gpt4 book ai didi

iphone - 为 UITabViewController 设置自定义设计尺寸(在 Storyboard 中)

转载 作者:行者123 更新时间:2023-12-03 18:33:19 24 4
gpt4 key购买 nike

我想修改当前使用 UITabBarController 作为初始 View Controller 的应用。

目标是在屏幕顶部区域有一个自定义状态栏,无论选择哪个选项卡,该状态栏都会始终显示。当前的 UITabBarController 可能无法使用屏幕的整个高度:

/----------------------------\
|Custom Status bar (50 px) |
| |
|----------------------------|
| |
|----------------------------| ---
| | |
| | |
|View of the selected tab | |
| | |
| | |
| | |
| | |
| | smaller height of the UITabBarController
| | |
|----------------------------| |
|Tab bar | |
| | |
\----------------------------/ ---

我使用 Storyboard。即使将模拟指标大小设置为“自由格式”,我也无法在“大小检查器”窗口中设置(设计)大小。

最佳答案

您可以像这样以编程方式创建您的UITabBar:

UITabBar *myTabBar = [[UITabBar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 50)];
[MyView addSubview:myTabBar];

您应该看到's documentation有关以编程方式设置 UITabBar 的更多信息,请参阅该主题。

关于iphone - 为 UITabViewController 设置自定义设计尺寸(在 Storyboard 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10460067/

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