iOS 18 tab 页面切换 界面闪动 跳动 问题的结局
//iOS 18 切换Tab页面闪烁问题解决 实现下面两个代理方法。
·
///iOS 18 切换Tab页面闪烁问题解决 实现下面两个代理方法
///iOS 18 切换Tab页面闪烁问题解决 实现下面两个代理方法
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController{
[UIView setAnimationsEnabled:false];
return true;
}
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{
[UIView setAnimationsEnabled:true];
}
更多推荐



所有评论(0)