菜鸟教程小白 发表于 2022-12-12 20:40:42

IOS 有没有办法在点击通知上的 "view"后将用户发送到特定 View ?


                                            <p><p>我在我的应用程序中使用推送通知,我想将用户发送到特定 View ,而不是他上次看到的 View 。有可能吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要实现适当的<a href="http://developer.apple.com/library/ios/ipad/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/IPhoneOSClientImp/IPhoneOSClientImp.html#//apple_ref/doc/uid/TP40008194-CH103-SW4" rel="noreferrer noopener nofollow">AppDelegate messages</a> .</p>

<p>具体来说,您将在 <code>application:didFinishLaunchingWithOptions:</code></p> 上收到 APNS 有效负载

<p>如果应用程序处于事件状态,您可能还会在不同的消息中收到有效负载,<code>application:didReceiveRemoteNotification:</code>。</p>

<p>然后,当您知道您的应用因用户触摸通知而启动时,您可以相应地将他引导至特定 View 。</p></p>
                                   
                                                <p style="font-size: 20px;">关于IOS 有没有办法在点击通知上的&#34;view&#34;后将用户发送到特定 View ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10371082/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10371082/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS 有没有办法在点击通知上的 &#34;view&#34;后将用户发送到特定 View ?