我正在使用Core Data,并且想知道我是否正确地做事。我使用完成处理程序和下面的块从单个对象中打开UIManagedDocument
。
[[self managedDocument] openWithCompletionHandler:^(BOOL success) {
if(success) {
NSLog(@"DOCUMENT: Success, Opened ...");
// TODO: Things to do when open.
// ...
// ...
}
}];
在我的UIViewController
我已经设置了一个观察员来观察UIDocumentStateChangedNotification
以表明我可以开始使用该文档。
- (void)awakeFromNib {
NSLog(@"%s", __PRETTY_FUNCTION__);
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self selector:@selector(documentIsReady) name:UIDocumentStateChangedNotification object:nil];
}
这种接缝工作正常,但我意识到我没有使用回调块。一种解决方案可能是创建我自己的通知并从块发布它,它本质上做同样的事情,但只是让代码更明显地阅读。任何评论都会非常感激。
答案 0 :(得分:2)
我会说,如果你只需要通知一个控制器,只有当文档被打开时(你有一个应用程序使用一个UIManagedDocument在控制器之间传递,如CS193P演示),它会最好只将代码留在完成块内。
但是,如果您的应用要多次打开和关闭文档,并且多个控制器必须知道该更改,则应使用通知。