我正在编写一个使用CloudKit的小应用程序。由于某些原因,当有与查询匹配的新记录时,应用程序不会收到任何通知。有没有人能够使这个功能起作用?
我在应用中创建了新记录,但也在CloudKit仪表板中创建了新记录。记录非常简单,只有一个整数字段。
创建记录:
CKRecord *record = [[CKRecord alloc] initWithRecordType:kSISCloudKitRecordTypeTest];
record[@"value"] = @1;
[self.publicDatabase saveRecord:record completionHandler:^(CKRecord *record, NSError *error)
{
// this call succeeds, no error.
}];
注册通知:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[application registerForRemoteNotifications];
}
创建订阅:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"value = 1"];
CKSubscription *subscription = [[CKSubscription alloc]
initWithRecordType:kSISCloudKitRecordTypeTest
predicate:predicate
options:CKSubscriptionOptionsFiresOnRecordCreation];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.alertLocalizationKey = @"LOCAL_NOTIFICATION_KEY";
notificationInfo.soundName = @"Party.aiff";
notificationInfo.shouldBadge = YES;
subscription.notificationInfo = notificationInfo;
[self.publicDatabase saveSubscription:subscription
completionHandler:^(CKSubscription *subscription, NSError *error)
{
// this succeeds as well, at least the 1st time I run it.
// on subsequent calls it returns an error "duplicate subscription", which is OK by me.
}
运行上述代码并在仪表板中创建新记录后,我希望调用此app delegate方法:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
CKNotification *cloudKitNotification = [CKNotification notificationFromRemoteNotificationDictionary:userInfo];
NSLog(@"cloudKitNotification: %@", cloudKitNotification);
}
然而,它永远不会被召唤。
答案 0 :(得分:6)
我现在收到Beta 3后的通知:
{
aps = {
};
ck = {
ce = 2;
cid = "iCloud.com.domain.App";
nid = "0b3ae470-d2c0-4f35-a817-12a899ee5964";
qry = {
dbs = 2;
fo = 1;
rid = 88aee11ca88d4ecc45bf57c898b360c8e7e3d8bb;
zid = "_defaultZone";
zoid = "_defaultOwner";
};
};
}
此外,shouldSendContentAvailable
上有一个CKNotificationInfo
属性,可以在后台接收通知 - 现在似乎也可以使用(从Beta 4开始)。