Я пытаюсь создать вспомогательный метод, который будет извлекать UIManagedDocument, а затем открыть и вернуть его, чтобы я мог получить доступ к тому же UIManagedDocument из нескольких мест в моем приложении.
У меня возникают проблемы с асинхронным характером этого, поскольку я не слишком разбираюсь в блоках. В идеале последовательность событий будет следующей:
- Класс X вызывает вспомогательный метод для получения UIManagedDocument и включает блок кода для запуска при возврате открытого документа.
- Метод класса извлекает UIManagedDocument и вызывает по требованию openWithCompletionHandler или saveToURL и включает блок кода для запуска при возврате открытого документа.
- openwithCompletionHandler или saveToURL выполнит свою задачу и с успехом вернется = ДА и запустит код в своем блоке
- Метод класса завершает свою задачу и возвращает с открытым UIManagedDocument и запускает код в своем блоке
Можно ли каким-то образом передать исходный блок?
Вот мой код до сих пор. Любые мысли были чрезвычайно оценены, спасибо.
// This is a dictionary where the keys are "Vacations" and the objects are URLs to UIManagedDocuments
static NSMutableDictionary *managedDocumentDictionary = nil;
// This typedef has been defined in .h file:
// typedef void (^completion_block_t)(UIManagedDocument *vacation);
// The idea is that this class method will run the block when its UIManagedObject has opened
@implementation MyVacationsHelper
+ (void)openVacation:(NSString *)vacationName usingBlock:(completion_block_t)completionBlock
{
// Try to retrieve the relevant UIManagedDocument from managedDocumentDictionary
UIManagedDocument *doc = [managedDocumentDictionary objectForKey:vacationName];
// Get URL for this vacation -> "<Documents Directory>/<vacationName>"
NSURL *url = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
url = [url URLByAppendingPathComponent:vacationName];
// If UIManagedObject was not retrieved, create it
if (!doc) {
// Create UIManagedDocument with this URL
doc = [[UIManagedDocument alloc] initWithFileURL:url];
// Add to managedDocumentDictionary
[managedDocumentDictionary setObject:doc forKey:vacationName];
}
// If document exists on disk...
if ([[NSFileManager defaultManager] fileExistsAtPath:[url path]])
{
[doc openWithCompletionHandler:^(BOOL success)
{
// Can I call the completionBlock from above in here?
// How do I pass back the opened UIDocument
}];
} else {
[doc saveToURL:url
forSaveOperation:UIDocumentSaveForCreating
completionHandler:^(BOOL success)
{
// As per comments above
}];
}
}