iOS 推送通知自定义提醒

iOS Push Notification Custom Alert

我正在尝试在我的 iOS 应用中启用推送通知。我想创建一个自定义警报来询问用户是否要启用通知。苹果是否允许 this/possible 实施?

谢谢

当您 register 接收通知时,会出现一个弹出窗口询问用户的权限(除非 he/she 之前已经授予权限):

The first time you call the registerUserNotificationSettings: method, iOS presents a dialog that asks the user for permission to present the types of notifications the app registered.

不能使用自定义警报,例如当您请求允许使用用户位置或his/her联系人时。 This question has a nice link 您可以在其中找到您可以可以 自定义的权限警报。

当您将推送通知合并到应用程序时 - 它会自动询问用户是否要允许推送通知。您无需创建自己的自定义警报。