前提・実現したいこと
目覚ましアプリを作っています。
時間になったら通知が来る処理をするところまではできたのですが、
Apple純正アプリのように、止める処理をするまでなり続けるアラームの実装方法がわかりません。
該当のソースコード
SwiftUI
1import Foundation 2import UserNotifications 3import UIKit 4 5class LocalPushCenter { 6 static func sendLocalPush(hour: Int, minute: Int) { 7 8 let timeString = String(format: "%02d:%02d", hour, minute) 9 let content = UNMutableNotificationContent() 10 content.title = "おはようございます" 11 content.subtitle = "(timeString)です" 12 content.body = "今日も良い1日になると良いですね!" 13 content.sound = UNNotificationSound.default // UNNotificationSound(named:) で任意の音を設定可 14 15 let component = DateComponents(hour: hour, minute: minute, second: 0, nanosecond: 0) 16 17 let trigger = UNCalendarNotificationTrigger(dateMatching: component, 18 repeats: false) 19 20 21 let request = UNNotificationRequest(identifier: "TIMER (timeString)", 22 content: content, 23 trigger: trigger) 24 25 26 27 let center = UNUserNotificationCenter.current() 28 center.delegate = (UIApplication.shared.delegate as! AppDelegate) as! UNUserNotificationCenterDelegate 29 center.add(request) { (error) in 30 if let error = error { 31 print(error.localizedDescription) 32 33 } 34 } 35 36 } 37} 38
試したこと
様々なサイトを見て回ったのですがこのパターンの通知を出す方法が見つかりませんでした。
あなたの回答
tips
プレビュー