Maarten Billemont
Maarten Billemont
The store does not sync without NSPersistentStoreUbiquitousContentURLKey? What is the error?
Compare the application's container on both devices and on developer.icloud.com to find out what is different. They should all be identical. Turn on verbose ubiquity logging and look through that...
I don't know anything at all about cloud drive or how it affects Core Data.
@polarneo do you have a working iCloud sync with USM on iOS 8?
I can't accept this change: it causes willLoadStore:isICloud: to run on an arbitrary thread - yes, it won't block, but it'll also break the thread model. Please share the stack...
Setting waitUntilFinished to NO is perhaps a good work-around, I don't know the full consequences. Ideally, I'd prefer to understand WHY the app deadlocks, instead of just closing our eyes...
Apparently, iOS has now started to import changes into the store on the main thread: `tryToReplaceLocalStore:withStoreSideLoadedByImporter:`. As a result, the main thread is busy importing changes when USM tells you...
No, your proposed fix seems like it will break your app. > And people should then not do operations on the usm in the delegate for willLoadStore. People need to...
Curious! I recommend you file an Apple bug report and/or use a developer technical support ticket. This is not something USM has any interaction or say in. Good luck! Let...
While the app is frozen, what are both apps doing in all threads? In particular, the threads of the MOCs doing operations and USM's serial queues in both apps. On...