UrbanAirship iOS SDK - 是否有通知权限请求回调?
UrbanAirship iOS SDK - Is There A Notifications Permission Request Callback?
在我的应用程序的引导流程中,我有一个页面询问用户是否要允许通知提醒(通过 UrbanAirship
)。
用户在随后生成的 SDK 中按 "Don't Allow"
或 "Allow"
UIAlert
我想执行一些操作。在这种情况下,当用户按下两个警报按钮中的一个时,将转换到引导流程的下一页。此外,在 "Allow"
情况下,更新本地存储中的变量以指示用户先前已授予推送通知权限。
理想情况下,我希望能够为每个按钮按下实现一个 closure/callback,但我无法从 UrbanAirship
文档中找到如何执行此操作。
目前我有:
@IBAction func permissionsButtonPressed(_ sender: Any) {
UAirship.push().userPushNotificationsEnabled = true
UAirship.push().defaultPresentationOptions = [.alert, .badge, .sound]
UAirship.push().resetBadge()
UAirship.push().isAutobadgeEnabled = true
//Update a variable in local storage
// ...
performSegue(withIdentifier: "exampleIdentifier", sender: self)
}
但这有实例化页面转换的问题,然后在入职流程的下一页顶部显示通知警报。
我在 UrbanAirship
文档 + 论坛中找到的最接近解决方案的是 this forum question from 2017,但这似乎只为 "allow"
按钮按下的情况(通过 didRegisterForRemoteNotifications
),而我仍然希望能够通过入职让我的用户进步,即使他们拒绝通知权限。
理想情况下,我希望能够实现与标准 UIAlertController
类似的完成闭包,例如:
func setupPermissionsAlert() {
let alert = UIAlertController(title: "This App Would Like to Send You Notifications", message: "An Interesting and Informative Message", preferredStyle: UIAlertController.Style.alert)
alert.addAction(UIAlertAction(title: "Don't Allow", style: UIAlertAction.Style.default, handler: { [unowned self] action in
//Some action
self.notAllowedCompletion()
}))
alert.addAction(UIAlertAction(title: "Allow", style: UIAlertAction.Style.default, handler: { [unowned self] action in
//Another action
self.allowedCompletion()
}))
//N.B. topMostViewController() is a custom method to locate the topMostViewController presented
UIApplication.shared.topMostViewController()?.present(alert, animated: true, completion: nil)
}
因此,我的问题是,UrbanAirship
对于 BOTH 的许可授予和拒绝结果是否可能SDK 提示?如果是这样,我该怎么做?
您可以使用 enableUserPushNotifications:
UAirship.push().enableUserPushNotifications({ (result) in
// handle result
})
这将导致系统提示权限并为您提供结果 true
如果启用了通知,否则 false
.
在我的应用程序的引导流程中,我有一个页面询问用户是否要允许通知提醒(通过 UrbanAirship
)。
用户在随后生成的 SDK 中按 "Don't Allow"
或 "Allow"
UIAlert
我想执行一些操作。在这种情况下,当用户按下两个警报按钮中的一个时,将转换到引导流程的下一页。此外,在 "Allow"
情况下,更新本地存储中的变量以指示用户先前已授予推送通知权限。
理想情况下,我希望能够为每个按钮按下实现一个 closure/callback,但我无法从 UrbanAirship
文档中找到如何执行此操作。
目前我有:
@IBAction func permissionsButtonPressed(_ sender: Any) {
UAirship.push().userPushNotificationsEnabled = true
UAirship.push().defaultPresentationOptions = [.alert, .badge, .sound]
UAirship.push().resetBadge()
UAirship.push().isAutobadgeEnabled = true
//Update a variable in local storage
// ...
performSegue(withIdentifier: "exampleIdentifier", sender: self)
}
但这有实例化页面转换的问题,然后在入职流程的下一页顶部显示通知警报。
我在 UrbanAirship
文档 + 论坛中找到的最接近解决方案的是 this forum question from 2017,但这似乎只为 "allow"
按钮按下的情况(通过 didRegisterForRemoteNotifications
),而我仍然希望能够通过入职让我的用户进步,即使他们拒绝通知权限。
理想情况下,我希望能够实现与标准 UIAlertController
类似的完成闭包,例如:
func setupPermissionsAlert() {
let alert = UIAlertController(title: "This App Would Like to Send You Notifications", message: "An Interesting and Informative Message", preferredStyle: UIAlertController.Style.alert)
alert.addAction(UIAlertAction(title: "Don't Allow", style: UIAlertAction.Style.default, handler: { [unowned self] action in
//Some action
self.notAllowedCompletion()
}))
alert.addAction(UIAlertAction(title: "Allow", style: UIAlertAction.Style.default, handler: { [unowned self] action in
//Another action
self.allowedCompletion()
}))
//N.B. topMostViewController() is a custom method to locate the topMostViewController presented
UIApplication.shared.topMostViewController()?.present(alert, animated: true, completion: nil)
}
因此,我的问题是,UrbanAirship
对于 BOTH 的许可授予和拒绝结果是否可能SDK 提示?如果是这样,我该怎么做?
您可以使用 enableUserPushNotifications:
UAirship.push().enableUserPushNotifications({ (result) in
// handle result
})
这将导致系统提示权限并为您提供结果 true
如果启用了通知,否则 false
.