WWDC 2014 Advanced Cloudkit Video 建议:每次收到推送时,它都应该检查通知集合以查找可能遗漏的任何内容。
我也是这样做的,但是如果在很短的时间内同一条记录发生 2 次更新,我将收到 2 次推送通知,每个通知将使用网络两次,因此 notificationChangedBlock 将被称为 2x2 = 4 次,但相关只有 2 次(如果没有错过任何通知,则为 0)。
这样效率不高,有什么不一样的吗?
func application(application: UIApplication!, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]!) {
Utility.checkNotifications()
}
class func checkNotifications() {
let defaultContainer = CKContainer.defaultContainer()
let publicDatabase = defaultContainer.publicCloudDatabase
let fnco = CKFetchNotificationChangesOperation(previousServerChangeToken: previousChangeToken)
fnco.notificationChangedBlock = {notification in
readNotificationIDs.append(notification.notificationID)
if previousChangeToken != nil {
Utility.processNotification(notification)
}
}
fnco.fetchNotificationChangesCompletionBlock = {serverChangeToken, error in
previousChangeToken = serverChangeToken
let op = CKMarkNotificationsReadOperation(notificationIDsToMarkRead: readNotificationIDs)
op.start()
}
defaultContainer.addOperation(fnco)
}
Best Answer-推荐答案 strong>
我用的是这个老把戏:
[NSObject cancelPreviousPerformRequestsWithTarget:self selectorselector(fetchPendingNotifications) object:nil];
[self performSelectorselector(fetchPendingNotifications) withObject:nil afterDelay:2.0f];
关于ios - 如何通过 CKFetchNotificationChangesOperation 避免无效的网络数据使用?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26276728/
|