Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实现了城市飞艇并向 iPhone 发送测试消息。一切正常。现在我希望用户在设置中控制通知以接收通知或关闭以禁用。
在 appdelegate 中的代码时如何控制它?城市飞艇实施的哪个部分控制通知显示?
城市飞艇不控制显示,只控制注册。显示由 iOS 完成。
updateRegistration您可以使用 的方法更改注册UAPush。
updateRegistration
UAPush
有一个关闭通知的选项 使用以下代码
[UAPush shared].pushEnabled=NO;
要再次接收通知,请编写以下代码
[UAPush shared].pushEnabled=YES;