gpt4 book ai didi

ios - 如何通过 CKFetchNotificationChangesOperation 避免低效的网络数据使用?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:20:09 24 4
gpt4 key购买 nike

WWDC 2014 Advanced Cloudkit 视频建议:每次收到推送时,它都应该检查通知集合以查找它可能遗漏的任何内容。

我也这样做,但是如果在很短的时间内同一记录发生 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)
}

最佳答案

我用这个老把戏:

[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(fetchPendingNotifications) object:nil];
[self performSelector:@selector(fetchPendingNotifications) withObject:nil afterDelay:2.0f];

关于ios - 如何通过 CKFetchNotificationChangesOperation 避免低效的网络数据使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26276728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com