ユーザーがdatePickerアクションを使用して通知を表示する日時を選択すると、自分のユーザー通知が表示されます。DatePickerを使用して通知をスケジュールする(swift3)
import UIKit
import UserNotifications
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func datePicker(_ sender: Any) {
}
@IBAction func disaper(_ sender: Any) {
let c = UNMutableNotificationContent()
c.title = "Lets Roll"
c.subtitle = "dx"
c.body = "fyb"
let t = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
let r = UNNotificationRequest(identifier: "any", content: c, trigger: t)
UNUserNotificationCenter.current().add(r, withCompletionHandler: nil)
}}
いいえ、日付ピッカーを使用します。あなたが掲示したコードがあなたの記載された目標にどのように関連しているかをさらに説明してください。 –
datePickerが最初の日付から変更された場合、通知がスケジュールされるようにしたいと思います。 –
あなたは何を試しましたか?あなたが投稿したコードは何ですか、あなたのニーズをどのように満たしていませんか? –