I was taking a look at WWDC 2013 sessions concerning iCloud and Core Data. I was really hoping to see there any new videos for UIManagedDocument
or UIDocument
. You might remember that those classes theoretically offer a great and simple approach to save data with (UIManagedDocument
) or without CoreData (UIDocument
) locally and in iCloud. But there have been or still are some really annoying system-based bugs coming along with those concepts, especially when syncing data between devices, see for example here.
However, there was NO video covering the UIManagedDocument
/UIDocument
and iCloud topic. The video "What's new in Core Data and iCloud?" just covers the classic approach for using Core Data persistent stores which is extended by new API to automatically cover fallback stores and syncing. Has anyone information what happened to UIManagedDocument
/UIDocument
? Did they give it up and see the classical approach as the better way to have apps with Core Data and iCloud sync?
UIManagedDocument
is a good idea or not. – Dehydrate