- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
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/
我写了一个函数,应该用值替换两个定界符之间的代码,它返回(我将其应用到的字符串是 HTML 对象的 .outerHTML)。 这将类似于它在例如中的使用方式。 Vue.js 或 Angular。 看起
好的,我有一个 Django View ,如下所示: @render_to('home/main.html') def login(request): # also tried Client.
由于我创建的几乎所有项目都包含 ListView,因此我想到创建一个类,其中包含修改 ListView 的所有重要功能。它看起来像这样: 主窗体: ListViewFunctions LVF = ne
The default implementation on Stream creates a new single-byte array and then calls Read. While this
我当然不是 Drupal 专家,但我之前设计并构建了一些数据库,所以我对第 3 方团队正在处理的数据库结构感到困惑,我已经将 Sequel Pro 添加到其中虚拟内容。我认为如果使用 Drupal 的
我想生成一个随机的短十六进制字符串(比如 8 位或 16 位)。 有很多选择可以做到这一点,例如,从我的头顶开始: uuid.uuid4().hex[:8] md5().hexdigest()[:8]
我是一名优秀的程序员,十分优秀!