📜  每天在特定时间设置本地通知 swift 代码示例

📅  最后修改于: 2022-03-11 15:00:59.741000             🧑  作者: Mango

代码示例1
let notificationContent = UNMutableNotificationContent()
notificationContent.title = "Title"
notificationContent.body = "This is a test"
notificationContent.badge = NSNumber(value: 1)
notificationContent.sound = .default

var datComp = DateComponents()
datComp.hour = 8
datComp.minute = 0
let trigger = UNCalendarNotificationTrigger(dateMatching: datComp, repeats: true)
let request = UNNotificationRequest(identifier: "ID", content: notificationContent, trigger: trigger)
                UNCenter.add(request) { (error : Error?) in
                    if let theError = error {
                        print(theError as! String)
                    }
                }