gpt4 book ai didi

ios - Xcode 6 中的 UITabbar

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:41:56 24 4
gpt4 key购买 nike

我的 UITabbarController 在 iPhone 4、4s、5、5S 中有 4 个标签,它与标签栏项目图像一起工作正常

enter image description here

但在 iPhone 6 和 iPhone 6 plus 中看起来是有线的。iPhone 6 和 iPhone 6 plus 需要放不同的图片吗?我该如何设置这些图像。

在 iPhone 6 中

enter image description here

还有,iPhone 6 Plus

enter image description here

最佳答案

我遇到了同样的问题。这里的问题不仅在于不同的分辨率,还在于 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com