gpt4 book ai didi

iphone - 如何以编程方式隐藏 UITabBarController?

转载 作者:行者123 更新时间:2023-12-03 18:27:46 31 4
gpt4 key购买 nike

是否可以用动画隐藏它?

最佳答案

UITabBar 继承自 UIView,因此您可以像使用标准 UIView 一样隐藏它并为其设置动画。

- (void) hideTheTabBarWithAnimation:(BOOL) withAnimation {
if (NO == withAnimation) {
[theTabBar setHidden:YES];
} else {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelegate:nil];
[UIView setAnimationDuration:0.75];

[theTabBar setAlpha:0.0];

[UIView commitAnimations];
}
}

关于iphone - 如何以编程方式隐藏 UITabBarController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2257178/

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