首页 > 解决方案 > 在设置的时间之间触发本地通知,每天间隔。(例如上午 10 点到下午 6 点,每天间隔 5 分钟)

问题描述

我正在创建一个应用程序来设置本地通知,该通知可以在设定的时间之间触发,间隔时间可以由我选择。我设法运行本地通知,但不知道如何在一天中的特定时间之间设置它。

//模型

struct ReminderModal:Codable{
    var Title:String
    var Description:String
    var Frequency:TimeFrequencyType
    var Id:String
    var StartTime:Date?
    var EndTime:Date?
}
struct TimeFrequencyType:Codable {
    let id: Int
    let name: String
}

let frequencyTypeArr = [
    TimeFrequencyType(id: 1, name: "1 Minute"),
    TimeFrequencyType(id: 5, name: "5 Minutes"),
    TimeFrequencyType(id: 10, name: "10 Minutes"),
    TimeFrequencyType(id: 15, name: "15 Minutes"),
    TimeFrequencyType(id: 20, name: "20 Minutes"),
    TimeFrequencyType(id: 39, name: "30 Minutes"),
    TimeFrequencyType(id: 60, name: "60 Minutes")
]

// 通知代码

let name = obj.Title
let description = obj.Description
let id =  obj.Id
let fid = obj.Frequency.id


// build notification
let content = UNMutableNotificationContent()
content.title = NSString.localizedUserNotificationString(forKey: "\(name)", arguments: nil)
content.body = NSString.localizedUserNotificationString(forKey: "\(description)", arguments: nil)
content.sound = UNNotificationSound.default
content.badge = UIApplication.shared.applicationIconBadgeNumber + 1 as NSNumber;
content.categoryIdentifier = "com.qtechsoftware.ReminderApp"

// Deliver the notification
let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: TimeInterval(fid*60), repeats: true)
let request = UNNotificationRequest.init(identifier: "\(id)", content: content, trigger: trigger)

// Schedule the notification.
let center = UNUserNotificationCenter.current()
center.add(request)

源的 Git 路径- ReminderApp

标签: iosswiftuilocalnotificationunnotificationrequestusernotificationsui

解决方案


您使用了错误的语法来触发它。 https://developer.apple.com/documentation/usernotifications/scheduling_a_notification_locally_from_your_app 使用本指南创建您想要的内容。

tl;博士:


let trigger = UNCalendarNotificationTrigger(
         dateMatching: dateComponents, repeats: true)

推荐阅读