菜鸟教程小白 发表于 2022-12-13 17:26:32

ios - 应用程序被杀死时如何从服务器推送通知


                                            <p><p>我正在开发一个应用程序,该应用程序可用于接收来自服务器的通知。我使用了 UILocalNotification,我的应用程序可以从具有前台和后台模式的服务器接收信息,但我不知道我的应用程序在被用户杀死时如何做到这一点。事实上,我知道 Facebook 消息应用程序可以轻松完成,我们随时都会收到通知。请给我一些解决方案,非常感谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>请阅读此链接</p>

<p> <a href="https://developer.apple.com/library/mac/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/IPhoneOSClientImp.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/mac/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/IPhoneOSClientImp.html</a> </p>

<p>推送通知负载如下所示</p>

<pre><code>{
    &#34;aps&#34;: {
         &#34;badge&#34;: 10,
         &#34;alert&#34;: &#34;Hello world!&#34;,
         &#34;sound&#34;: &#34;Default&#34;
    }
}
</code></pre>

<p>如果您在警报中添加消息。那么您的通知将在您的应用程序处于后台或被终止时显示。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 应用程序被杀死时如何从服务器推送通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38243340/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38243340/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 应用程序被杀死时如何从服务器推送通知