11

我正在使用UNNotificationRequest,我希望在单击按钮时立即弹出通知。但在这种情况下,它会在我退出应用程序时出现。这是我的代码

@IBAction func shortNotifBtn(_ sender: Any) {
    let center = UNUserNotificationCenter.current()
    let content = UNMutableNotificationContent()
    content.title = "Late wake up call"
    content.body = "The early bird catches the worm, but the second mouse gets the cheese."
    content.categoryIdentifier = "alarm"
    content.userInfo = ["customData": "fizzbuzz"]
    content.sound = UNNotificationSound.default()
    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
    let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
    center.add(request)
}
4

2 回答 2

13

当问题UILocalNotification涉及更现代的UNNotificationRequest.

正确答案是传递nil。根据's的文档UNNotificationRequestrequestWithIdentifier:content:trigger:

trigger

导致通知被传递的条件。指定 nil 以立即发送通知。

所以在你的代码中:

let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: nil)
于 2019-04-08T16:34:53.283 回答
-1

https://developer.apple.com/reference/uikit/uilocalnotification

如果在系统传递通知时应用程序是最重要且可见的,则调用应用程序委托的 application(_:didReceive:) 来处理通知。使用提供的 UILocalNotification 对象中的信息来决定要采取的操作。当应用程序已经位于最前面时,系统不会显示任何警报、标记应用程序的图标或播放任何声音。

这是正常的行为。除了为什么你需要通过点击按钮来触发本地通知?为什么不在点击按钮而不是通过通知时实现所需的功能?

于 2017-04-26T14:34:12.747 回答