我有一个正在构建的应用程序,我正在尝试使用 Cloudkit 跟踪订阅。我有一个名为 Notifications 的 RecordType,其中一个名为 NotificationText 的字符串类型字段。出于某种原因,当我添加新记录时,应用程序没有收到它。这是我到目前为止所做的:
- 在应用的“功能”部分注册了 Cloudkit。
- 为远程通知的 info.plist 文件添加了所需的后台模式键
使用以下方式将订阅保存到数据库:
CKSubscription *subscription = [[CKSubscription alloc]
initWithRecordType"Notifications"
predicate:[NSPredicate predicateWithValue:YES]
options:CKSubscriptionOptionsFiresOnRecordCreation];
CKNotificationInfo *notificationInfo = [CKNotificationInfo new];
notificationInfo.alertLocalizationKey = @"NotificationText";
notificationInfo.shouldBadge = YES;
notificationInfo.soundName = @"";
subscription.notificationInfo = notificationInfo;
[publicDB saveSubscription:subscription
completionHandler:^(CKSubscription *subscription, NSError *error) {
if (error)
[self handleError:error];
[[NSUserDefaults standardUserDefaults] setBool:YES forKey"sub"];
}
];
请求用户允许使用以下方式发送推送通知:
UIApplication *application = [UIApplication sharedApplication];
UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert categories:nil];
[application registerUserNotificationSettings:notificationSettings];
[application registerForRemoteNotifications];
实现了-(void)applicationUIApplication *)application didReceiveRemoteNotificationnon null NSDictionary *)userInfo fetchCompletionHandlernon null void (^)(UIBackgroundFetchResult))completionHandler; 在 AppDelegate.m 文件中。
现在我进入 Cloudkit 仪表板并创建 RecordType Notifications 的新记录,但没有任何反应。难道我做错了什么?我错过了什么吗?
Best Answer-推荐答案 strong>
经过大量搜索并将我的头撞到墙上,我发现了我的问题。
推送通知不适用于模拟器!
我将 iPod 连接到应用程序,然后,砰!已收到通知。
关于ios - Objective C-推送通知不适用于 Cloudkit,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36287830/
|