菜鸟教程小白 发表于 2022-12-13 13:47:23

ios - 无需单击警报 View 即可获得推送通知


                                            <p><p>收到通知后,我没有点击警报 View 。片刻之后,我点击应用程序图标启动应用程序,然后调用 <a href="http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIApplicationDelegate/applicationWillEnterForeground%3a" rel="noreferrer noopener nofollow"><code>– applicationWillEnterForeground:</code></a> .如果我现在想使用刚刚收到的通知,我在哪里可以得到它?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你不能。通知仅发送一次。如果您在 UIAlertView 打开时没有打开它,或者使用下拉通知中心打开它,则无法以相同方式打开它。</p>

<p>检查通知是否打开的一种方法是使用发送通知的服务器来执行此操作。当通知发送到设备时,将其保存在服务器端,“打开”标志为 0。
当应用程序在不使用 <a href="http://developer.apple.com/library/ios/DOCUMENTATION/UIKit/Reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIApplicationDelegate/application%3adidFinishLaunchingWithOptions%3a" rel="noreferrer noopener nofollow"><code>– application:didFinishLaunchingWithOptions:</code></a> 的情况下启动时您的 AppDelegate 中的委托(delegate)方法具有推送消息作为选项,它可以检查服务器是否有任何“未读”消息,并因此显示它们是否有。</p>

<p>这是我对你的问题最好的建议。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无需单击警报 View 即可获得推送通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10581269/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10581269/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无需单击警报 View 即可获得推送通知