gpt4 book ai didi

ios - 隐藏 TabBar 后无法触及 TabBar 后面的区域

转载 作者:可可西里 更新时间:2023-11-01 03:58:04 33 4
gpt4 key购买 nike

我在我的应用程序上使用 TabBarController,在其中一个主视图 (aViewController) 中,我按下另一个 Controller (bViewController),并使用 self.tabBarController.tabBar.hidden=YES 隐藏 TabBar;

bViewController 在 tabBar 所在的同一位置有一个按钮,它不会捕获触摸事件。

我已经尝试将按钮放置在 bViewController 的不同位置,而 tabBar 应该所在的区域是唯一未检测到触摸事件的地方。

我尝试在 tabBarController 之外使用 bViewController,它工作正常。任何帮助将不胜感激。

编辑:

当我按下 aViewController 上的按钮时,我调用

self.tabBarController.tabBar.hidden=YES;
[self performSegueWithIdentifier:@"aViewToBView" sender:self];

aViewToBview 是在 Storyboard上声明的推送转场

最佳答案

出于某种原因,您无法触摸标签栏下方的 View 。

但是,如果隐藏标签栏,然后向其添加 subview ,则该 View 可以接收用户交互!

这对我有用:

// Create a button that is at the very bottom of the screen
CGFloat buttonHeight = 45.0f;
UIButton *finishButton = [[UIButton alloc] initWithFrame:CGRectMake(
0,
self.view.frame.size.height - self.tabBarController.tabBar.frame.size.height - buttonHeight,
self.view.frame.size.width,
buttonHeight)];
//...more initialization of the button...

//Here is our solution:
[self.tabBarController.view addSubview:finishButton];

关于ios - 隐藏 TabBar 后无法触及 TabBar 后面的区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25538410/

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