菜鸟教程小白 发表于 2022-12-13 07:30:04

ios - 如何获取选定的 TabBar 项?


                                            <p><p>我经历了一些 SO 问题,发现了这个:</p>

<pre><code>NSLog(@&#34;selected tab index =&gt; %d&#34;,self.tabBarController.tabBar.selectedItem.tag);
</code></pre>

<p>但是这总是返回 0。
我做错了什么?</p>

<p>我在 AppDelegate 中的代码:</p>

<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    // Assign tab bar item with titles
    UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
    UITabBar *tabBar = tabBarController.tabBar;
    UITabBarItem *tabBarItem1 = ;
    UITabBarItem *tabBarItem2 = ;
    UITabBarItem *tabBarItem3 = ;   
    return YES;
}
</code></pre>

<p>编辑:</p>

<p>我想做这样的事情:</p>

<pre><code>if(self.tabBarController.tabBar.selectedItem.tag == 0)
{
    [ setSelectedImageTintColor:];
}   
else   if(self.tabBarController.tabBar.selectedItem.tag == 1)
{
    [ setSelectedImageTintColor:];
}   
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须在 Storyboard 编辑器中或以编程方式将标签值分配给项目,使其不为零。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何获取选定的 TabBar 项?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23336619/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23336619/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何获取选定的 TabBar 项?