如何在ios中更改标签栏项目的背景图片?

时间:2016-04-26 09:41:37

标签: ios uiimage uitabbarcontroller uitabbaritem

我想用一些图片更改标签栏项目的背景。 在这方面有人能帮助我吗?

这是我想要的:

enter image description here

另外我需要知道背景图像的大小应该是多少。我的照片越来越偏离

enter image description here

2 个答案:

答案 0 :(得分:2)

更改UITabBar

的背景颜色
TabBarController* Tcontroller =(TabBarController*)self.window.rootViewController;
Tcontroller.tabBar.barTintColor=[UIColor greenColor];

答案 1 :(得分:1)

您应该根据自己的数量自行计算您的tabbaritem的图像大小,例如,如果您有4个标签项:每个项目的宽度将是屏幕宽度的1/4,高度是平板电脑的高度。