gpt4 book ai didi

ios - 在 iOS 中以编程方式在标签栏上添加图像

转载 作者:行者123 更新时间:2023-11-29 13:32:54 24 4
gpt4 key购买 nike

如何在 iOS (Xcode 4.2) 中以编程方式在选项卡栏上添加图像?

我已经在 Could not set tab bar image in Xcode 4.2 Programmatically 提出问题但没有得到满意的答案.

最佳答案

iOS 5 外观 API,

UIImage* tabBarBackground = [UIImage imageNamed:@"tabbar.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];

另见 thread ,第二高的投票答案解释了 <5.0 和 =>5.0 两种情况。

关于ios - 在 iOS 中以编程方式在标签栏上添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11392165/

24 4 0