美文网首页
iOS10 .alert, .badge, .sound等授权

iOS10 .alert, .badge, .sound等授权

作者: 薄凉_简书 | 来源:发表于2017-06-28 17:11 被阅读51次
iOS8.0之后,设置APP 的badgeNumber,需要用户授权才能显示
1.png
import UserNotifications

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        if #available(iOS 10.0, *) {
            UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .carPlay, .sound], completionHandler: { (success, error) in
                print("授权" + (success ? "成功" : "失败"))
            })
        } else {
            // iOS 10 以下
            //取得用户授权显示通知【上方的通知条、声音、badgeNumber】
            let settings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories:nil)
            application.registerUserNotificationSettings(settings)
        }
        return true
    }

相关文章

网友评论

      本文标题:iOS10 .alert, .badge, .sound等授权

      本文链接:https://www.haomeiwen.com/subject/fvgucxtx.html