gpt4 book ai didi

ios - 使用 Storyboard更改 UItabbar 项目的图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:50:27 25 4
gpt4 key购买 nike

我有以下 Storyboard:

enter image description here

如您所见,有一个带有 5 个选项卡的选项卡栏应用程序,在 Storyboard上我为每个选项卡分配了 Logo 。现在,当用户单击特定 View 中的单元格时,我想更改其中一个选项卡的图像。我怎样才能做到这一点?我没有标签栏 View Controller 或项目的实例,因为 Storyboard几乎为我完成了所有这些工作。所以我的问题是我必须实现哪些方法来更改图像?如果我需要标签栏 Controller ,我该如何获取它的实例以及我应该将它指向哪个类?

非常感谢,

最佳答案

在作为标签栏层次结构一部分的任何 UIViewController 类中,获取标签栏 Controller 实例所需要做的就是:

//In UIViewController
UITabBarController *tabBarController = self.tabBarController;

你可以这样修改图片

//Suppose you want to change the 1st (0th) tab bar image
UITabBarItem * tabItem = [tabBarController.tabBar.items objectAtIndex: 0];
tabItem.image = //whatever image you want to change to

关于ios - 使用 Storyboard更改 UItabbar 项目的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11660618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com