美文网首页
iOS tabBar 中的图标及文字出现位置偏移动画

iOS tabBar 中的图标及文字出现位置偏移动画

作者: 落寒z | 来源:发表于2018-12-04 16:41 被阅读23次

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

    viewController.hidesBottomBarWhenPushed = YES;
    

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

    解决方案:

    [UITabBar appearance].translucent = NO;
    

    相关文章

      网友评论

          本文标题:iOS tabBar 中的图标及文字出现位置偏移动画

          本文链接:https://www.haomeiwen.com/subject/qkhvcqtx.html