私のアプリは、CloudKit リモート通知を受信するように設定されています。バックグラウンドで実行中に、これらの通知を受け取ることがあります。これらの通知についてはまだ何もしていません - UIBackgroundFetchResultNewData を完了ハンドラに渡しただけです。その理由は、バックグラウンドで CloudKit から単純にダウンロードできるとは思わなかったからです。Background Fetch を介して、またはバックグラウンドで実行する特別なジョブをセットアップすることによってのみ実行できると思いました。しかし、私は今これを再検討しています。UIApplicationStateBackground で CKFetchRecordsOperation を実行し、関連する CKAsset ファイルをダウンロードすると、実際に機能しているように見えます。
だから私の現在のコードはこれです:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
__ENTERING_METHOD__
CKNotification *ckNotification = [CKNotification notificationFromRemoteNotificationDictionary:userInfo];
if (ckNotification) {
if ([ckNotification.subscriptionID isEqualToString:kCKDocumentChangeSubscription]) {
CKRecordID *recordID = [(CKQueryNotification*)ckNotification recordID];
if (recordID) {
if([UIApplication sharedApplication].applicationState == UIApplicationStateBackground) {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultNewData);
}
}
else {
CKFetchRecordsOperation *fetchRecordsOperation = [[CKFetchRecordsOperation alloc] initWithRecordIDs:@[recordID]];
fetchRecordsOperation.fetchRecordsCompletionBlock = ^(NSDictionary *recordsByRecordID, NSError *error) {
if (error) {
dispatch_async(dispatch_get_main_queue(), ^{
if (completionHandler) {
completionHandler(UIBackgroundFetchResultFailed);
}
});
}
else {
CKRecord *ckDocumentRecord = recordsByRecordID[recordID];
CKAsset *documentAsset = [ckDocumentRecord objectForKey:ckDocumentAsset];
NSData *data = [NSData dataWithContentsOfURL:documentAsset.fileURL];
[self handleData:data];
UIBackgroundFetchResult result = (data == nil)?UIBackgroundFetchResultFailed:UIBackgroundFetchResultNewData;
if (completion) {
completion(result);
}
}
};
CKContainer *defaultContainer = [CKContainer defaultContainer];
CKDatabase *publicDatabase = [defaultContainer publicCloudDatabase];
[publicDatabase addOperation:fetchRecordsOperation];
}
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultFailed);
}
}
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultNoData);
}
}
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultNoData);
}
}
}
そして、このコードを次のようにしたい:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
__ENTERING_METHOD__
CKNotification *ckNotification = [CKNotification notificationFromRemoteNotificationDictionary:userInfo];
if (ckNotification) {
if ([ckNotification.subscriptionID isEqualToString:kCKDocumentChangeSubscription]) {
CKRecordID *recordID = [(CKQueryNotification*)ckNotification recordID];
if (recordID) {
CKFetchRecordsOperation *fetchRecordsOperation = [[CKFetchRecordsOperation alloc] initWithRecordIDs:@[recordID]];
fetchRecordsOperation.fetchRecordsCompletionBlock = ^(NSDictionary *recordsByRecordID, NSError *error) {
if (error) {
dispatch_async(dispatch_get_main_queue(), ^{
if (completionHandler) {
completionHandler(UIBackgroundFetchResultFailed);
}
});
}
else {
CKRecord *ckDocumentRecord = recordsByRecordID[recordID];
CKAsset *documentAsset = [ckDocumentRecord objectForKey:ckDocumentAsset];
NSData *data = [NSData dataWithContentsOfURL:documentAsset.fileURL];
[self handleData:data];
UIBackgroundFetchResult result = (data == nil)?UIBackgroundFetchResultFailed:UIBackgroundFetchResultNewData;
if (completion) {
completion(result);
}
}
};
CKContainer *defaultContainer = [CKContainer defaultContainer];
CKDatabase *publicDatabase = [defaultContainer publicCloudDatabase];
[publicDatabase addOperation:fetchRecordsOperation];
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultFailed);
}
}
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultNoData);
}
}
}
else {
if (completionHandler) {
completionHandler(UIBackgroundFetchResultNoData);
}
}
}
バックグラウンドで CKFetchRecordsOperation を実行し、関連する CKAsset ファイルをダウンロードすることは、バックグラウンドで実行できること (または実行する必要があること) に対する何らかの違反になりますか?