UIManagedDocument CompletionHandler& NSNotification

时间:2012-09-25 17:59:12

标签: iphone objective-c cocoa-touch nsnotifications nsdocument

我正在使用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];
}

这种接缝工作正常,但我意识到我没有使用回调。一种解决方案可能是创建我自己的通知并从发布它,它本质上做同样的事情,但只是让代码更明显地阅读。任何评论都会非常感激。

1 个答案:

答案 0 :(得分:2)

我会说,如果你只需要通知一个控制器,只有当文档被打开时(你有一个应用程序使用一个UIManagedDocument在控制器之间传递,如CS193P演示),它会最好只将代码留在完成块内。

但是,如果您的应用要多次打开和关闭文档,并且多个控制器必须知道该更改,则应使用通知。