如果另一个设备上的核心数据中的条目发生更改,NSLog 消息会显示它已注意到更改,但NSPersistentStoreDidImportUbiquitousContentChangesNotification
没有被调用。直到在我的第一台设备上保存它才知道更新我的表格视图。
这是我的代码:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(iCloudUpdates:)
name:NSPersistentStoreDidImportUbiquitousContentChangesNotification
object:nil];
有人知道为什么这可能不起作用吗?