The uidocument tag has no wiki summary.
3
votes
2answers
451 views
Is IOS 5 UIDocument subclass backwards compatible?
To support iCloud, we're encouraged to use a UIDocument subclass. If I define a new subclass, set the project target version to 3.0, and test using for iOS 5 before using my new subclass, will the ...
2
votes
0answers
187 views
Sharing a plist file using iCloud
I have a relativley simple app which persists data to a plist file located in the documents folder. The data loads into a UITableView at startup. The user can then edit, delete or add records and any ...
0
votes
0answers
14 views
UIDocument and a NSDictionary
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 ...
0
votes
1answer
36 views
Disable action items in UIDocumentInteractionController's presentPreviewAnimated
I am using UIDocumentInteractionController's presentPreviewAnimated method to preview document. It works fine. But I wish to disable the action button while in the preview mode. I have the following ...
0
votes
0answers
19 views
UIDocumentStateSavingError for file in the iCloud: possible causes and how to recover
With the coming update, our iOS app is supposed to export data to a text file in the iCloud and to import data from it. The implementation is mostly completed and we started beta-testing. Everything ...
0
votes
1answer
59 views
Where to store a preview of a UIDocument?
I'm working on UIDocument application and I'd like to show the user a preview of the document before he opens it. I can render that preview into an image when the document get's closed. But where ...
0
votes
1answer
62 views
UIDocument with Autosave when is the file saved
I setting up UIDocument to save my files to the device. I mark a file needs to be saved with
[ myDoc updateChangeCount:UIDocumentChangeDone ]
Now it appears that the saving operation only kicks in ...
0
votes
1answer
76 views
Clarification on UIDocument in IiOS 5
I need a little clarification working with UIDocument and I have 3 related questions
-1. In the call:
-(id)contentsForType:(NSString *)typeName error:(NSError **)outError
from where does the ...
0
votes
1answer
103 views
Managing files in iOS5
I want to handle files in my iOS App.
My app should create a file with a custom suffix (e.g. file.mysuff) and save it to the device so I'll be able to copy it using iTunes File Sharing.
Then I want to ...
0
votes
1answer
89 views
What is the proper way to move a UIDocument to a new location on the file-system
I have a document-based iOS application with a UIDocument subclass. I need to be able to move the file it represents on the file-system. I have considered moving it with an NSFileManager, but this ...
0
votes
1answer
171 views
How to interpret document.state == 12 (iCloud)
Whenever I load a UIDocument from iCloud, I check its state like so:
NSLog(@"Library loadFromContents: state = %d", self.documentState);
In some cases I have received documentState 8 or 12 which ...
0
votes
0answers
160 views
iCloud autosave only triggered when leaving the app after calling updateChangeCount:UIDocumentChangeDone?
I have an iCloud UIDocument subclass which I call updateChangeCount on but the contentsForType method doesn't get called unless I press the home button to leave the app even if I wait for several ...