我已经设置了本地通知系统,以便我可以在每天的特定时间发出通知。此时间由用户确定,我将其存储为字符串。我将分解我在代码中所做的所有步骤,但基本上,我的问题是通知不会触发。
第1步: 在此步骤中,我设置了一个警报,要求允许发送通知:
let center = UNUserNotificationCenter.current()
let options: UNAuthorizationOptions = [.alert, .badge, .sound]
center.requestAuthorization(options: options) { (granted, error) in
if granted {
application.registerForRemoteNotifications()
}
}
第2步: 在此步骤中,我设置了我调用的函数以发送通知:
static func sendNotification(stringDate: String) {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "HH:mm"
let content = UNMutableNotificationContent()
content.title = "Title"
content.body = "Detail"
content.badge = 1
if let date = dateFormatter.date(from: stringDate) {
let calendar = Calendar.current
let hour = calendar.component(.hour, from: date)
let minute = calendar.component(.minute, from: date)
var dateComponents = DateComponents()
dateComponents.hour = hour
dateComponents.minute = minute
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
let request = UNNotificationRequest(identifier: "dateDone", content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)
}
}
第3步: 然后我在我的app委托文件中调用此函数,如下所示:
func applicationDidEnterBackground(_ application: UIApplication) {
let defaults = UserDefaults.standard
if defaults.object(forKey: "currentUser") != nil {
if User.current.desiredTimeForNews.characters.contains("A") {
let stringToBeConverted = User.current.desiredTimeForNews.replacingOccurrences(of: "AM", with: "")
HelperFunctions.sendNotification(stringDate: stringToBeConverted)
} else {
let stringToBeConverted = User.current.desiredTimeForNews.replacingOccurrences(of: "PM", with: "")
HelperFunctions.sendNotification(stringDate: stringToBeConverted)
}
}
}
重要:正如您在我的函数中看到的,我接受了一个“stringDate”参数。此变量的字符串值为my date。然后我将其转换为日期值。通过使用断点和打印语句,我看到我的所有值,包括日期,小时,分钟等都不是零。
总的来说,我的问题是永远不会发送通知。但是我知道它被调用,因为我使用了断点来证明这一点。任何帮助将不胜感激!
答案 0 :(得分:0)
就我个人而言,我在真实的设备上运行它并且它有效。虽然它应该在模拟器上工作但它对我来说并不适合。所以我会先尝试在真实设备上运行它,然后再查看其他内容!
答案 1 :(得分:0)
代码似乎没问题。应该在设备上工作,也可以在模拟器上工作。我的猜测是你在 calendar.timezone 或 dateformatter.timezone 时遇到了时区问题。然后触发时间恰好发生在不同的时间,然后是你所期望的。 在设置完成后插入此检查以查看详细信息:
UNUserNotificationCenter.current()
.getPendingNotificationRequests(completionHandler: { requests in
for (index, request) in requests.enumerated() {
print("notification: \(index) \(request.identifier) \(request.trigger)")
}
})