如何在iOS 11中检查UNUserNotificationCenter的当前授权状态?我一直在寻找一会儿,发现了一些代码,但是它不是很快的3,iOS 10中已弃用了某些功能,有人可以帮忙吗?

最佳答案

好吧,我找到了:

let center = UNUserNotificationCenter.current()
center.getNotificationSettings { (settings) in
    if(settings.authorizationStatus == .authorized)
    {
        print("Push authorized")
    }
    else
    {
        print("Push not authorized")
    }
}

编写者:Kuba

关于swift - 如何在Swift 3中获取通知授权状态?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46457733/

10-12 02:53