0
我正在使用CloudKit推送通知。通常,我使用選項.firesOnRecordCreation
來確定何時需要發送推送通知。例如。 -使用CloudKit延遲後的推送通知
let subscription = CKQuerySubscription(recordType: "SomeRecord", predicate: NSPredicate(format: "TRUEPREDICATE", argumentArray: nil), options: .firesOnRecordCreation)
CKContainer.default().publicCloudDatabase.save(subscription) { (result, error) -> Void in
//check for result and error
}
這是一個CKQuerySubscriptionOptions
。但是,我想在幾天後發送推送通知。我怎樣才能做到這一點?謝謝!