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.

link|improve this question

42% accept rate
feedback

1 Answer

up vote 0 down vote accepted

It depends on what you want to do. Think of a document as something the user can see: rename, create, delete.

If those documents in your app have several properties that are stored in a NSDictionary, then you can just add a NSDictionary as an ivar of your UIDocument subclass.

If, on the other hand, the various primary keys in your dictionary are "separate" and belong to different top-level entities, then you might want to store each value in a separate document.

link|improve this answer
your right.. having each key as a separate document should ideally be the way to go, i'm being lazy right now and do an all in one thing.. – user134611 Feb 29 at 22:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.