在iphone中实现无提示消息的推送通知

发布于 2024-11-28 21:04:41 字数 130 浏览 0 评论 0原文

是否可以在没有提示消息的情况下调用应用程序。我创建了一个示例应用程序,它需要每 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小女人ら 2024-12-05 21:04:41

如果您使用UILocalNotification,请将alertBody属性设置为空(默认情况下为nil),并且不会有警报。 更多信息在这里...

如果您使用远程推送通知 (APNS),则不应在通知负载中包含警报键值,这样就不会出现警报。 更多信息在这里...

但您应该考虑到,使用 UILocalNotification 仅是设备内部,而使用 APNS 仅是服务器到设备。也许考虑使用在后台执行代码< /a>.

If you are using UILocalNotification let the alertBody 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文