iOS 13.1 没有收到静默的 CKQuerySubscription 通知
iOS 13.1 doesn't receive silent CKQuerySubscription notifications
我的应用使用 CloudKit 查询订阅和通知作为基于 CloudKit 的同步解决方案的一部分。这适用于 iOS 12、macOS 10.14 甚至 macOS 10.15 beta,但不适用于 iOS 13.0、iOS 13.1、iPadOS 13.1 和 tvOS 13.0。
删除并重新创建订阅无法解决此问题。
这是一个已知问题吗?
根据文档,CloudKit 订阅没有任何变化。还是我错过了什么?
要在 iOS 13.x 和 tvOS 13.x 中接收静默 CKQuerySubscription 通知,NotificationInfo
的 soundName
和 alertBody
参数您的 CKQuerySubscription
必须 而不是 被设置。
过去我们学会了对所述参数使用空字符串,以使整个 CloudKit 订阅正常工作,但这已成为历史。显然 Apple 修复了一个旧错误,导致使用此 'workaround'.
的应用程序出现问题
我已经在 iOS 12.4.2、iOS 13.1.2、tvOS 13.0、macOS 10.14.6 和 macOS 10.15 GM 上进行了测试。
let info = CKSubscription.NotificationInfo()
info.shouldSendContentAvailable = true
// info.soundName = "" // Don't set this property
// info.alertBody = "" // And also leave this this property alone
let subscription = CKQuerySubscription(recordType: "yourRecordType", predicate: NSPredicate(value: true), subscriptionID: "yourSubscription", options: [CKQuerySubscription.Options.firesOnRecordUpdate, CKQuerySubscription.Options.firesOnRecordDeletion])
subscription.notificationInfo = info
// You must first delete the old subscription to change the sound name
let deleteOperation = CKModifySubscriptionsOperation(subscriptionsToSave: nil, subscriptionIDsToDelete: ["yourSubscription"])
yourContainer.privateCloudDatabase.add(deleteOperation)
let createOperation = CKModifySubscriptionsOperation(subscriptionsToSave: [subscription], subscriptionIDsToDelete: nil)
createOperation.addDependency(deleteOperation)
yourContainer.privateCloudDatabase.add(createOperation)
静默通知在 iOS 13 时也停止为我的应用程序工作。
- 在我的 iOS 12 台设备和 MacBook 上,静默通知一直正常工作。
- 多次重新创建订阅均未成功。
- 检查了所有步骤
https://developer.apple.com/library/archive/qa/qa1917/_index.html
当我看到Ely的回答后,我立即去检查我是否为通知设置了soundName。虽然我没有,但我看到了 alertBody 空字符串并决定在没有它的情况下尝试它。重新创建订阅后,静默通知在 iOS 13 中再次开始工作。阅读文档时,很明显您不希望在静默通知上显示警告消息。但是,我确实记得在某个时候添加它以使其在另一个 iOS 版本上工作。
在我的例子中,我创建了一个这样的 RecordZoneSubscription:
CKSubscription * subscription = [[CKRecordZoneSubscription alloc] initWithZoneID:self.dataZone.zoneID subscriptionID:[self mainPrivateSubscriptionID]];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.shouldBadge = false;
notificationInfo.alertBody = @""; // THE CULPRIT
notificationInfo.shouldSendContentAvailable = true;
subscription.notificationInfo = notificationInfo;
解决方案:
CKSubscription * subscription = [[CKRecordZoneSubscription alloc] initWithZoneID:self.dataZone.zoneID subscriptionID:[self mainPrivateSubscriptionID]];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.shouldBadge = false;
notificationInfo.shouldSendContentAvailable = true;
subscription.notificationInfo = notificationInfo;
我的应用使用 CloudKit 查询订阅和通知作为基于 CloudKit 的同步解决方案的一部分。这适用于 iOS 12、macOS 10.14 甚至 macOS 10.15 beta,但不适用于 iOS 13.0、iOS 13.1、iPadOS 13.1 和 tvOS 13.0。
删除并重新创建订阅无法解决此问题。
这是一个已知问题吗?
根据文档,CloudKit 订阅没有任何变化。还是我错过了什么?
要在 iOS 13.x 和 tvOS 13.x 中接收静默 CKQuerySubscription 通知,NotificationInfo
的 soundName
和 alertBody
参数您的 CKQuerySubscription
必须 而不是 被设置。
过去我们学会了对所述参数使用空字符串,以使整个 CloudKit 订阅正常工作,但这已成为历史。显然 Apple 修复了一个旧错误,导致使用此 'workaround'.
的应用程序出现问题我已经在 iOS 12.4.2、iOS 13.1.2、tvOS 13.0、macOS 10.14.6 和 macOS 10.15 GM 上进行了测试。
let info = CKSubscription.NotificationInfo()
info.shouldSendContentAvailable = true
// info.soundName = "" // Don't set this property
// info.alertBody = "" // And also leave this this property alone
let subscription = CKQuerySubscription(recordType: "yourRecordType", predicate: NSPredicate(value: true), subscriptionID: "yourSubscription", options: [CKQuerySubscription.Options.firesOnRecordUpdate, CKQuerySubscription.Options.firesOnRecordDeletion])
subscription.notificationInfo = info
// You must first delete the old subscription to change the sound name
let deleteOperation = CKModifySubscriptionsOperation(subscriptionsToSave: nil, subscriptionIDsToDelete: ["yourSubscription"])
yourContainer.privateCloudDatabase.add(deleteOperation)
let createOperation = CKModifySubscriptionsOperation(subscriptionsToSave: [subscription], subscriptionIDsToDelete: nil)
createOperation.addDependency(deleteOperation)
yourContainer.privateCloudDatabase.add(createOperation)
静默通知在 iOS 13 时也停止为我的应用程序工作。
- 在我的 iOS 12 台设备和 MacBook 上,静默通知一直正常工作。
- 多次重新创建订阅均未成功。
- 检查了所有步骤 https://developer.apple.com/library/archive/qa/qa1917/_index.html
当我看到Ely的回答后,我立即去检查我是否为通知设置了soundName。虽然我没有,但我看到了 alertBody 空字符串并决定在没有它的情况下尝试它。重新创建订阅后,静默通知在 iOS 13 中再次开始工作。阅读文档时,很明显您不希望在静默通知上显示警告消息。但是,我确实记得在某个时候添加它以使其在另一个 iOS 版本上工作。
在我的例子中,我创建了一个这样的 RecordZoneSubscription:
CKSubscription * subscription = [[CKRecordZoneSubscription alloc] initWithZoneID:self.dataZone.zoneID subscriptionID:[self mainPrivateSubscriptionID]];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.shouldBadge = false;
notificationInfo.alertBody = @""; // THE CULPRIT
notificationInfo.shouldSendContentAvailable = true;
subscription.notificationInfo = notificationInfo;
解决方案:
CKSubscription * subscription = [[CKRecordZoneSubscription alloc] initWithZoneID:self.dataZone.zoneID subscriptionID:[self mainPrivateSubscriptionID]];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.shouldBadge = false;
notificationInfo.shouldSendContentAvailable = true;
subscription.notificationInfo = notificationInfo;