如何在swift 3中获取通知授权状态?

前端之家收集整理的这篇文章主要介绍了如何在swift 3中获取通知授权状态?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何查看UNUserNotificationCenter以获取iOS 11中的当前授权状态?我一直在寻找一段时间并找到一些代码,但它不是在 swift 3中,而且一些功能在iOS 10中被弃用了.任何人都可以帮忙吗?
好的,我找到了:
let center = UNUserNotificationCenter.current()
center.getNotificationSettings { (settings) in
    if(settings.authorizationStatus == .authorized)
    {
        print("Push authorized")
    }
    else
    {
        print("Push not authorized")
    }
}

代码Kuba

原文链接:https://www.f2er.com/swift/319260.html

猜你在找的Swift相关文章