UITabBar 的下半部分被手机本身覆盖

发布于 2024-10-29 23:35:14 字数 452 浏览 4 评论 0原文

我有这个应用程序,目前有 3 个屏幕。第一个屏幕有 UItableView 和 NavigationController。第二个屏幕仍然是 UITableView,它从第一个屏幕向下钻取。在第三页上,我尝试调用 tabbarcontroller 但当视图出现时,我的选项卡栏被切成原始大小的一半。这是片段。

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
    // Custom initialization

}

[self.view addSubview:tabBarController.view];}

有人吗?提前致谢

I have this application which have 3 screen for now. The first screen has UItableView with NavigationController. The second screen is still UITableView which drill down from the first one. On the third page I tried to call tabbarcontroller but when the view appeared, my tabbar was cut to half of the original size. Here is the snippet.

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
    // Custom initialization

}

[self.view addSubview:tabBarController.view];}

!

Anybody? Thanks in advance

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

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

发布评论

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

评论(1

听你说爱我 2024-11-05 23:35:14
  • (id)initWithNibName:(NSString *)nibNameOrNil 捆绑:(NSBundle *)nibBundleOrNil {

if ((self = [super initWithNibName:nibNameOrNil 捆绑:nibBundleOrNil])) {

// Custom initialization

}

[self.view addSubview:tabBarController.view];

[self.view setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

}

  • (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {

if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {

// Custom initialization

}

[self.view addSubview:tabBarController.view];

[self.view setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];

}

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