在iOS 10中不推荐使用UIUserNotificationSettings

时间:2016-09-28 09:02:01

标签: swift xcode apple-push-notifications ios10 xcode8

我正在寻找在iOS 10中实现UIUserNotificationSettings的替代方法。

Apple文档提供了以下框架以供进一步使用。 UNNotificationSettings链接here

是否有人可以帮助我使用示例代码来使用UNNotificationSettings而不是UIUserNotificationSettings来实现以下

let notificationSettings = UIUserNotificationSettings(
        forTypes: [.Badge, .Sound, .Alert], categories: nil)
    application.registerUserNotificationSettings(notificationSettings)

1 个答案:

答案 0 :(得分:47)

注册您应该实施此代码的通知:

import UserNotifications

UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) { 
 (granted, error) in
 //Parse errors and track state
}

resource包含其他信息。