困っていること
LocalNotificationがうまく送信されるか試すためにボタンを配置してLocalNotificationを送っているのですが、うまく送られずに困っています。
現状
プッシュ通知を作成しているコードは以下です
Swift
1class ViewController: UIViewController, UNUserNotificationCenterDelegate { 2 3 override func viewDidLoad() { 4 super.viewDidLoad() 5 let center = UNUserNotificationCenter.current() 6 center.requestAuthorization(options: [.alert, .badge, .sound]) {(granted, error) in 7 if granted { 8 print("許可する") 9 } else { 10 print("許可しない") 11 } 12 } 13 } 14 15 @IBAction func onTap(_ sender: Any) { 16 sendLocalNotification() 17 } 18 19 private func sendLocalNotification(){ 20 // タイトル、本文、サウンド設定の保持 21 let content = UNMutableNotificationContent() 22 content.title = "title" 23 content.body = "message" 24 content.sound = UNNotificationSound.default 25 26 // 現在日時 27 let date = Date() 28 29 // 年月日時分秒をそれぞれ個別に取得 30 let calendar = Calendar.current 31 32 // 年月日時分秒をそれぞれまとめて取得 33 let comps = calendar.dateComponents([.year, .month, .day, .hour, .minute, .second], from: date) 34 35 let trigger: UNNotificationTrigger = UNCalendarNotificationTrigger(dateMatching: comps, repeats: false) 36 37 // 識別子とともに通知の表示内容とトリガーをrequestに内包 38 let request = UNNotificationRequest(identifier: "LocalNotification", content: content, trigger: trigger) 39 40 // UNUserNotificationCenterにrequestを加える 41 let center = UNUserNotificationCenter.current() 42 center.delegate = self 43 center.add(request) { (error) in 44 if let error = error { 45 print(error.localizedDescription) 46 } 47 } 48 } 49 50} 51 52
フォアグラウンドで受け取るためにAppDelegateにも処理を書いています
Swift
1extension AppDelegate: UNUserNotificationCenterDelegate{ 2 func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { 3 // アプリ起動中でもアラートと音で通知 4 completionHandler([.alert, .sound]) 5 } 6}
何か足りていない処理があったりするのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。