I'm trying to figure out what exactly the UIDocument subclass should look like when the file I'm trying to sync/share via iCloud is essentially an NSDictionary.
The dictionary file (plist) has a bunch of keys that are primary keys. each key could have another dictionary.
I've seen examples of UIDocuments that have just one property of NSString. All they do is sync those "notes" between devices.
When it comes to this.. what Should I treat UIDocument like? Maybe each key in the NSDictionary is a UIDocument? or Should the whole document should be synced.
Any examples would be very helpful.