My purpose is to retrieve a UIManagedDocument object from an known url and then open it.
Something like:
UImanagedDocument *doc = retrieveDoc(url);
then, I can do something like:
[doc openWithCompletionHandler:^(BOOL success){ ....}];
Believe me I did search apple's documentation there is a only method called initialise with a given url. Yes, I init create and save it before, and later I just need pick it up. Any way to do this?
Hope any one could give hints, thanks