gpt4 book ai didi

ios - tabbarcontroller 隐藏操作后 UiButton 的丢失触摸检测

转载 作者:行者123 更新时间:2023-11-29 12:31:57 25 4
gpt4 key购买 nike

我正在编写一个带有包含一些 NavigationViewController 的 tabbarcontroller 的应用程序。每个 NavigationController 都包含一些 ViewController。有时在导航过程中我需要隐藏标签栏,我使用的代码:

- (void) hideTabBar:(UITabBarController *) tabbarcontroller {


for(UIView *view in tabbarcontroller.view.subviews)
{
if([view isKindOfClass:[UITabBar class]])
{
[view setFrame:CGRectMake(view.frame.origin.x, [self ScreenHeight], view.frame.size.width, view.frame.size.height)];
}
else
{
[view setFrame:CGRectMake(view.frame.origin.x, view.frame.origin.y, view.frame.size.width, [self ScreenHeight])];
}

}


}

一切正常,直到我尝试在屏幕底部添加一个按钮。我无法触摸放置在屏幕底部的按钮,标签栏被正确隐藏并且按钮可见......如果我向上移动按钮它返回正常工作......似乎标签栏永远不会移出屏幕...我该怎么办?

最佳答案

试试这个

ViewController* vC = [[ViewController alloc] init];
vC.hidesBottomBarWhenPushed = YES;

并确保该按钮位于最上层。在你的情况下,底部工具栏隐藏按钮

关于ios - tabbarcontroller 隐藏操作后 UiButton 的丢失触摸检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27439690/

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