我希望我的应用中的标签栏项目能够均匀地占据所有标签栏,无论是纵向还是横向。我的标签栏上有五个标签。下面的代码没有实现这一点。我究竟做错了什么?我注意到screenSize.size.height实际上引用了宽度,我不知道为什么会这样。
非常感谢任何帮助。
谢谢
UITabBar *tabBar = self.tabBarController.tabBar;
CGRect screenSize = [[UIScreen mainScreen] bounds];
float width;
if (self.isShowingLandscapeView){
width = screenSize.size.height/5;
}
else {
width = (screenSize.size.width/5);
}
[tabBar setItemWidth:width];