I'm using a UIDocument with iCloud. I'm not using CoreData. What's the best way to delete a UIDocument?
|
|
|
To delete the document from iCloud, first you have to get the filename you want to delete. and then you can delete it using NSFileManager.
This is the way, which i used to delete document, Check it out. It is woking great for me. Thanks |
|||||
|
|
Copied from the "Deleting a Document" section of the Document-Based App Programming Guide for iOS.
N.B.: "When you delete a document from storage, your code should approximate what UIDocument does for reading and writing operations. It should perform the deletion asynchronously on a background queue, and it should use file coordination." |
|||
|
|
|
I think I found a solution:
Source: http://oleb.net/blog/2011/11/ios5-tech-talk-michael-jurewitz-on-icloud-storage/ |
|||
|
|
|
See Apple documentation of "Managing the Life-Cyle of a Document" under 'Deleting a Document." |
|||
|
|