App-Prefs:root = NOTIFICATIONS_ID不适用于iOS 11 Swift 4

时间:2017-11-05 22:44:55

标签: ios notifications ios11 swift4

我正在尝试使用numpy,但它只是将我发送到“设置”应用,而不是“通知”标签。

我没有运气就试过this

任何解决方案?感谢

1 个答案:

答案 0 :(得分:0)

Apple将拒绝您提交的应用程序。因为这是专用API。在下面使用以下功能。参考:How do I open phone settings when a button is clicked?

guard let settingsUrl = URL(string: UIApplication.openSettingsURLString) else {
    return
}

if UIApplication.shared.canOpenURL(settingsUrl) {
    UIApplication.shared.open(settingsUrl, completionHandler: { (success) in
         print("Settings opened: \(success)") // Prints true
    })
}