菜鸟教程小白 发表于 2022-12-13 08:55:19

ios - 如何在 AppDelegate 中获取 Storyboard UITabBarController 的指针


                                            <p><p>我正在使用 Storyboard 来创建我的应用程序。我的应用程序的根目录是一个 UITabBarController。如何从我的应用程序委托(delegate)中访问我的 <code>tabBarController</code>?我设法从我的一个 UIViewControllers 中成功地实现了这些操作。但我想将代码移动到我的应用程序委托(delegate)。我怎么能做到这一点?我以为我可以从 Storyboard 拖放到我的应用委托(delegate)并得到类似的东西</p>

<pre><code>@property (nonatomic, strong) IBOutlet UITabBarController *tabBarController;
</code></pre>

<p>但这似乎不是目前的选择。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 AppDelegate 中获取 StoryboardUITabBarController 的指针,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25318116/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25318116/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 AppDelegate 中获取 Storyboard UITabBarController 的指针