当我将其作为子视图添加到视图中时,为什么看不到整个选项卡栏?

发布于 2024-12-05 05:29:36 字数 371 浏览 0 评论 0原文

我是 iPhone 开发新手。我正在使用基于导航的应用程序,并希望在我的应用程序中添加选项卡栏视图。为此,我创建了一个名为 TabBarView 的视图并添加了一个 UITabBarController 出口。我的 TabBarViewController.m 的 viewDidLoad 是这样的:

 - (void)viewDidLoad {
[self.view addSubview:tabBarController.view];
[super viewDidLoad];
 } 

当我在模拟器中观看它时,我看不到整个选项卡栏。我只能看到一半。我浏览了一些教程并尝试设置视图大小,但我做不到。谁能告诉我为什么我看不到整个标签栏以及如何修复它。提前致谢。

I am new to iPhone development. I am working with an navigational based application and want to add a tab bar view in my application. For that i created a view called TabBarView and added a UITabBarController outlet. viewDidLoad of my TabBarViewController.m is like this:

 - (void)viewDidLoad {
[self.view addSubview:tabBarController.view];
[super viewDidLoad];
 } 

When i watch it in simulator, i can't see my whole tab bar. I can just see half of it. I went through some tutorials and tried to set view size, but i couldn't. Can anyone tell me why can't i see whole tab bar and how to fix it. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扬花落满肩 2024-12-12 05:29:36

确保视图的大小是 480 因为你看到它的一半,因为你的状态栏是 20 所以你的视图是 460 请

没有状态栏的视图是 480 有它 460
所以当你添加 40 像素的标签栏时,你必须使视图大小为 480...
所以不要隐藏状态栏的20

make sure that the size of view is 480 cause you see half of it because you have status bar of 20 so your view is 460 please

Your view without statusbar is 480 with it 460
so when you add tabbar with 40 pixel so you have to make the view of size 480...
so not to hide the 20 of status bar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文