ios - 如何通过 CKFetchNotificationChangesOperation 避免无效的网络数据使用?
<p><p>WWDC 2014 Advanced Cloudkit Video 建议:<em>每次收到推送时,它都应该检查通知集合以查找可能遗漏的任何内容。</em></p>
<p>我也是这样做的,但是如果在很短的时间内同一条记录发生 2 次更新,我将收到 2 次推送通知,每个通知将使用网络两次,因此 <code>notificationChangedBlock</code> 将被称为 2x2 = 4 次,但相关只有 2 次(如果没有错过任何通知,则为 0)。</p>
<p>这样效率不高,有什么不一样的吗?</p>
<pre><code>func application(application: UIApplication!, didReceiveRemoteNotification userInfo: !) {
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)
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我用的是这个老把戏:</p>
<pre><code>;
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何通过 CKFetchNotificationChangesOperation 避免无效的网络数据使用?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26276728/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26276728/
</a>
</p>
页:
[1]