UserNotifications ios10 通知使用
Posted ZhangShengjie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UserNotifications ios10 通知使用相关的知识,希望对你有一定的参考价值。
通知在ios10 中推荐使用
导入 import UserNotifications 头文件
if #available(iOS 10.0, *) { UNUserNotificationCenter.current().requestAuthorization(options: [.carPlay,.badge,.sound,.alert]) { (Success, error) in } } else { let setting = UIUserNotificationSettings(types: [.alert,.badge,.sound], categories: nil) application.registerUserNotificationSettings(setting) }
以上是关于UserNotifications ios10 通知使用的主要内容,如果未能解决你的问题,请参考以下文章
swift iOS 10上的UserNotifications
iOS 10 中的新 UserNotifications 是不是仍有 ~64 个本地通知限制?