Can't save data anymore

The .NET assemblies have been updated in the git repo:

Regards,
Mark

Hi Florin,

Recently we made some refactoring in classes of Backendless MessagingService. Sorry, but this was necessary.

  1. Now there are several new methods in MessagingService class associated with application delegates. So, you should use
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken {
    [backendless.messaging didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}


instead your implementation.
You could investigate our PushNotify sample - how it is organized.
Take note to “OLDmarker: it shows some differences between old and new implementations.

  1. You should update the fixed backendless lib (backendless.a & include folder) from github. Two new methods were added in PublishOptions class, so you can use them, in your case:
let publishOptions = PublishOptions()
publishOptions.assignHeaders(data)

Regards,
Slava

Works now thanks!

Thank you.