菜鸟教程小白 发表于 2022-12-13 05:22:03

ios - 在 didReceiveRemoteNotification 中加载特定的 Controller


                                            <p><p>我正在我的应用上开发<code>推送通知</code>。我希望当人们点击推送消息时,应用程序会打开一个特定的 Controller ;</p>

<p>如果我这样做:</p>

<pre><code>storyBoardName = @&#34;MyStoryboardName&#34;;
UIStoryboard* storyBoard = ;
MainWebController* MainWeb = ;
MainWeb.urlToLoad = URL_TO_LOAD;
self.window.rootViewController = MainWeb;
;
</code></pre>

<p>工作,当我点击推送按摩时,我可以看到 <code>MainWeb</code> 但 ControllerView 覆盖了所有屏幕:标签栏和导航栏被隐藏了!</p>

<p>我知道 <code>rootviewcontroller</code> 是一个 <code>uitabbar</code>:</p>

<pre><code> NSLog(@&#34;Controller: %@&#34;,self.window.rootViewController.debugDescription);
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>解决方法:</p>

<pre><code>UITabBarController *tabController = (UITabBarController *)self.window.rootViewController;

tabController.selectedIndex = 0;

UINavigationController *navigationController = (UINavigationController *)tabController.selectedViewController;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 didReceiveRemoteNotification 中加载特定的 Controller ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19834961/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19834961/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 didReceiveRemoteNotification 中加载特定的 Controller