iOS12.1 出现 tabbar 按钮错乱问题

更新12.1之后,发现push一个界面,返回的时候,tabBar上的图标和文字出现从上往下移动的位置错乱问题,瞬间内心不愉快了!

经过测试发现,如果使用系统OS12.1 UINavigationController + UITabBarController( UITabBar 磨砂),在popViewControllerAnimated 会遇到tabbar布局错乱的问题

- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated{
   
   if (self.childViewControllers.count > 0) {
       
       //就是这行代码惹的祸
       viewController.hidesBottomBarWhenPushed = YES;
   }
   
   [super pushViewController:viewController animated:animated];
}

当你push进去隐藏了tabbar返回的时候就会重新设置他的frame。这个问题是 iOS 12.1 Beta 2 引入的问题,只要 UITabBar 是磨砂的,并且 push viewController 时 hidesBottomBarWhenPushed = YES 则手势返回的时候就会触发,出现这个现象的直接原因是 tabBar 内的按钮 UITabBarButton 被设置了错误的 frame,frame.size 变为 (0, 0) 导致的。

解决办法
 

加上    [UITabBar appearance].translucent = NO;   完美解决

你可能感兴趣的:(UI,新版本新特性)