I’m creating OS X app and just trying to save an object. It may work correctly at first, then after a while, when I try to save the object will always get this error when saving.
To overcome the issue, I need to create a new Xcode project and may work initially, but then the problem occurred again.
Hi,
I cannot reproduce this problem. Can you give me your project for investigation?
My email: slavav@themidnightcoders.com
Or try our mac data sample - ToDoDataMac target of BackendlessDemos project - https://github.com/Backendless/iOS-Samples
Thanks for the reply Vyacheslav.
Previously it does not work, for example when I tried batch saving
for (Staff *staff in users) {
[backendless.persistenceService save:staff];
}
it will result in error after a while and nothing is saved on back endless dashboard. Then after that when I open the app again, saving any object or even register user will result in the NSURLConnectionLoader exception.
So I have refrain from batch saving and use parent entity instead to batch save so currently its working good. I tried to reproduce the bugs by batch saving again but cannot reproduce the bugs anymore. However I’ll let you know when the problem occurred again.
Thanks.