gpt4 book ai didi

ios - 注册接收远程 CloudKit 更改通知不起作用

转载 作者:行者123 更新时间:2023-12-02 01:20:46 25 4
gpt4 key购买 nike

我刚刚使用新的 iOS 13 NSPersistentCloudKitContainer 完成了 CoreData+CloudKit 的设置。它工作得非常好,因为我可以使用自动生成的 CoreData 类进行属性访问和本地存储,并且 NSPercientCloudKitContainer 自动同步设备之间的更改。我遇到的问题是获取远程更改的通知。我检查了Apple文档,其中指出您告诉NSPersistentCloudKitContainerNSPersistentStoreDescription您希望它发送通知,然后将其他对象注册为该通知的观察者。我已经完成了此操作并添加了一个测试方法来显示何时检测到远程更改。测试方法生成的警报永远不会生成,但如果我终止该应用程序并重新打开它,更改会立即出现。所以我相信远程更改正在同步并集成到本地 CoreData 存储中,但通知不起作用。我已将后台模式 权利添加到我的目标,并选择了远程通知 模式。代码如下。如有任何帮助,我们将不胜感激!

设置发送通知的选项:

- (NSPersistentCloudKitContainer *)persistentContainer {
// The persistent container for the application. This implementation creates and returns a container, having loaded the store for the application to it.
@synchronized (self) {
if (_persistentContainer == nil) {
_persistentContainer = [[NSPersistentCloudKitContainer alloc] initWithName:@"<redacted>"];
[_persistentContainer loadPersistentStoresWithCompletionHandler:^(NSPersistentStoreDescription *storeDescription, NSError *error) {
if (error != nil) {
// ...
}
else {
// ...

[storeDescription setOption:@(YES) forKey:NSPersistentStoreRemoteChangeNotificationPostOptionKey];

// ...
}
}];
}
}

return _persistentContainer;
}

注册接收通知:

- (void)viewDidLoad {
[super viewDidLoad];

// ...

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changes) name:NSPersistentStoreRemoteChangeNotification object:[CoreDataFunctions persistentContainer]];
}

响应变化的测试方法:

- (void)changes {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Changes received" message:nil preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:ok];
[self presentViewController:alert animated:YES completion:nil];
}

最佳答案

你观察到的是持久化容器而不是存储协调器,它应该是这样的:

[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(persistentStoreRemoteChangeNotification:) name:NSPersistentStoreRemoteChangeNotification object:_persistentContainer.persistentStoreCoordinator];

关于ios - 注册接收远程 CloudKit 更改通知不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58641106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com