我正在寻找在iOS 10中实现UIUserNotificationSettings的替代方法。
Apple文档提供了以下框架以供进一步使用。 UNNotificationSettings链接here。
是否有人可以帮助我使用示例代码来使用UNNotificationSettings而不是UIUserNotificationSettings来实现以下
let notificationSettings = UIUserNotificationSettings(
forTypes: [.Badge, .Sound, .Alert], categories: nil)
application.registerUserNotificationSettings(notificationSettings)
答案 0 :(得分:47)
注册您应该实施此代码的通知:
import UserNotifications
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) {
(granted, error) in
//Parse errors and track state
}
此resource包含其他信息。