I have an app that uses Core Data and iCloud: the transaction log is in user's ubiquitous container, the DB store file as well, and in a .nosync folder.
Usually there is no problem, but sometimes the app crashes with "App was suspended with locked system files". I noticed this is happening when the app is getting iCloud NSPersistentStoreDidImportUbiquitousContentChangesNotification and then the app updates its database.
What is the best practice for using iCloud & Core Data? I didn't see any recommendation in Apple doc like close the DB when entering background or remove the observer for iCloud notifications -- anyway, Apple claims that the iCloud infrastructure keeps updating the data even when the app is not running, so I guess I need to keep the observer.
PS: I'm trying to add some info from the crash report, but StackOverflow doesn't want to accept it because of "wrong formatting".
