在iphone中实现无提示消息的推送通知
是否可以在没有提示消息的情况下调用应用程序。我创建了一个示例应用程序,它需要每 15 分钟后向服务器发送请求并保存响应。是否可以在 iphone 中实现此功能。如果可能的话,我该怎么做...请帮忙
提前谢谢............
Is it possible to invoke an application without prompt message . I have created a sample application and it need to send request on server after every 15 min and save response. Is it possible to implement this in iphone. If possible, which way shall i do that... please help
Thanks in advance..............
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
UILocalNotification
,请将alertBody
属性设置为空(默认情况下为nil),并且不会有警报。 更多信息在这里...如果您使用远程推送通知 (APNS),则不应在通知负载中包含警报键值,这样就不会出现警报。 更多信息在这里...
但您应该考虑到,使用 UILocalNotification 仅是设备内部,而使用 APNS 仅是服务器到设备。也许考虑使用在后台执行代码< /a>.
If you are using
UILocalNotification
let thealertBody
property empty (it is nil by default) and there will be no alert. More Information here...If you are using remote push notifications (APNS) you should not include a alert key-value in the notification payload and there will be no alert. More Information here...
But you should consider that using UILocalNotification is device intern only and using APNS is server to device only. Maybe think of using Executing Code in the Background.