1

代码很简单:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge], completionHandler: { (granted, error) in
        if !granted {
            print("Not allowed")
        }
    })

    let content = UNMutableNotificationContent()
    content.title = "Alert"
    content.sound = UNNotificationSound.default()

    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 20, repeats: false)

    let request = UNNotificationRequest(identifier: "test", content: content, trigger: trigger)

    UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)
    return true
}

它在 iOS 11 上运行良好,如下所示: 在此处输入图像描述

但在 iOS 10 上,警报不显示。

在 iOS 10 和 iOS 11 上,声音确实出现了。

我的 Xcode 版本是 9.2(9C40b)

任何帮助表示赞赏。

4

1 回答 1

3

尝试像这样添加通知正文

content.body = "Any text/Blank Space"

希望对你有帮助

于 2018-09-12T12:56:25.863 回答