Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为每个 tabBarItem 实现一个像这张图片一样的 UItabBar,并选择不同的图片。这在 iOS 上可行吗?谢谢
是的,通过设置图像
UITabBarItem 初始化程序 initWithTitle:image:tag;
和颜色通过:
[[UITabBar appearance] setSelectedImageTintColor:[UIColor greenColor]];
尽管您需要指定确切的颜色以满足您的喜好。
这可以通过编程方式使用 tabBarItem.image 属性在调用 viewDidLoad 时更改图像。