17.7. Handling Conflicts in iCloud Documents
Problem
You want to be able to solve conflicts between two or
more versions of a document (managed through UIDocument) in iCloud.
Solution
Use the otherVersionsOfItemAtURL: class method of
the NSFileVersion class
to detect different versions of the current revision of the document
you are managing using an instance of UIDocument. Each version of a document is of
type NSFileVersion. The procedure
to take is as follows:
Instantiate and open a document.
Listen for
UIDocumentStateChangedNotificationnotifications (see Recipe 17.6).Check if the
documentStateproperty of the document that caused the aforementioned notification to be fired has theUIDocumentStateInConflictstate. If yes, then we will proceed to the next step. If not, we will handle the issue in a different way.
Note
When a conflict occurs on a document, iCloud will automatically attempt to resolve that conflict by either merging two or more revisions of that document together, or simply taking the latest version. Whatever iCloud does, it will give you a revision of the document to work with. This revision is called the current version of that document.
We will use the
currentVersionOfItemAtURL:class method of theNSFileVersionclass to get the current version of the document by passing the URL of the document to this method.Next, we will use the
otherVersionsOfItemAtURL:class method of theNSFileVersionclass to get all other versions of the document, by passing the URL of the document ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access