我正在注册我的应用,以APNS
方式通过application:didFinishLaunchingWithOptions:
方式接收推送通知:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
注册正常,我的提供商成功获取了我的令牌,事实上我收到推送通知,但当我的应用不在前台时,会显示横幅。我希望通过“关闭”和“查看”按钮显示警报,并在有效负载字典中收到“警报”字符串......可能会发生什么?
答案 0 :(得分:7)
检查手机设置,用户可以自定义推送通知在其设备上的显示方式。
您无法使用代码更改此设置(参考:https://stackoverflow.com/a/9137501/)
但是,您可以检查current setting,然后请求用户进行更改。
答案 1 :(得分:0)
转到Settings->Notifications->select Your App->Alert style(None,Banners,Alert) select Alerts.