如何使用CKNotification?

Posted

技术标签:

【中文标题】如何使用CKNotification?【英文标题】:How to Use CKNotification? 【发布时间】:2019-01-06 23:17:48 【问题描述】:

我想在 cloudkit 上的值发生变化时得到通知

这是我的代码:

let now = Date()
    let timeInterval:TimeInterval = now.timeIntervalSince1970
    let timeStamp = Int(timeInterval)
let publicDB = CKContainer.default().publicCloudDatabase
    let bookID = CKRecord.ID(recordName: "\(timeStamp)")
    let book = CKRecord(recordType: "Book", recordID: bookID)

【问题讨论】:

您需要阅读CloudKit Quick Start Guide。虽然代码在 Objective-C 中,但概念和 API 在 Swift 中是相同的。 【参考方案1】:

我通过定期询问解决了这个问题。

【讨论】:

如何解决问题?

以上是关于如何使用CKNotification?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用notifier()和composing()?

我如何脱离notifier.watch

如何在我的桌面(Windows 7)上使用我的python程序在没有notify2,notify-send,pqt5的桌面上显示简单的通知?

在这段代码中,如何使用 notify 调用 wait() 调用?

如何只允许 Paypal 请求我的 notify_url?

如何在不是线程的对象上调用 wait() 和 notify() 方法?