gpt4 book ai didi

ios - UITabBarController显示

转载 作者:行者123 更新时间:2023-11-29 03:58:14 25 4
gpt4 key购买 nike

我是 iOS 开发新手。我正在开发一个使用选项卡栏 Controller 的应用程序。我正在以编程方式设置选项卡栏 Controller 的框架,但是当我切换到 iPhone 5 时,选项卡栏项目和主视图之间会创建空白区域。以下是 iPhone 5 模拟器上的应用程序屏幕截图。

Screen Shot on 4.5 retina display simulator

以下是我为 UITabBarController 设置框架的一行代码:

[rootTabBarController.view setFrame:CGRectMake(0,-20,320, 480)];

最佳答案

输入这行代码并检查它,你必须相应地设置框架。

if ([[UIScreen mainScreen] bounds].size.height == 568)
     {

[rootTabBarController.view setFrame:CGRectMake(0,0,320, 568)];
     }
 else
     {
[rootTabBarController.view setFrame:CGRectMake(0,0,320, 480)];
     }

关于ios - UITabBarController显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16214819/

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