我有 UITabbarController 在 iPhone 4、4s、5、5S 中有 4 个标签,它与标签栏项目图像一起工作正常
但在 iPhone 6 和 iPhone 6 plus 中看起来是有线的。
是否需要为 iPhone 6 和 iPhone 6 plus 放置不同的图像?
如何设置这些图像。
在 iPhone 6 中
还有,iPhone 6 Plus
Best Answer-推荐答案 strong>
我遇到了同样的问题。这里的问题不仅在于分辨率不同,还在于 iphone 6 和 iphone 6 plus 的边界大小实际上更宽。通过在所有不同类型的手机上运行模拟器,我发现了以下内容:
Tab bar Bounds
iPhone 6 plus: 414 x 49
iPhone 6: 375 x 49
iPhone 5: 320 x 49
iPhone 4 320 x 49
这意味着您必须为 iphone 6 和 6 plus 使用不同的背景图片。
我不确定这是否是最有效的方法,但它为我解决了这个问题:
UITabBarController *tabBarController = (UITabBarController *) self.parentViewController;
UITabBar *tabBar = tabBarController.tabBar;
if ([[UIScreen mainScreen] bounds].size.height > 700) {
tabBar.selectionIndicatorImage = [UIImage imageNamed"tabbar-selected6Plus"];
} else if ([[UIScreen mainScreen] bounds].size.height > 600) {
tabBar.selectionIndicatorImage = [UIImage imageNamed"tabbar-selected6"];
} else {
tabBar.selectionIndicatorImage = [UIImage imageNamed"tabbar-selected"];
}
希望有帮助!
关于ios - Xcode 6 中的 UITabbar,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26730544/
|