美文网首页
iOS12.1 UITabBar popViewControll

iOS12.1 UITabBar popViewControll

作者: 有毒的程序猿 | 来源:发表于2018-11-01 11:18 被阅读145次
     /* 
    
            这个问题是 iOS 12.1 Beta 2 的问题,只要 UITabBar 是磨砂的,
    并且 push viewController 时 hidesBottomBarWhenPushed = YES
     则手势返回的时候就会触发。
         
         出现这个现象的直接原因是 tabBar 内的按钮 UITabBarButton 
    被设置了错误的 frame,frame.size 变为 (0, 0) 导致的。
    如果12.1正式版Apple修复了这个bug可以移除调这段代码(来源于QMUIKit的处理方式)
    
    */
    

    解决办法一:
    直接导入下面github分类两个文件到项目中即可,
    https://github.com/yuhechuan/YHTabBar-ios_12.1

    解决办法二:

     UITabBar 为不透明,但是会影响,控件的布局,除非写入真实frame
     [[UITabBar appearance] setTranslucent:NO];
    

    相关文章

      网友评论

          本文标题:iOS12.1 UITabBar popViewControll

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