美文网首页
5. 进入二级界面返回时,tabbar出现图片和 文字向上移动错

5. 进入二级界面返回时,tabbar出现图片和 文字向上移动错

作者: 枫之叶_小乙哥 | 来源:发表于2018-12-10 16:17 被阅读5次

解决方案: 在AppDelegate中,添加下面代码即可解决

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {


    // iOS12.1 正式版导致的TabBar 里面item错误偏移解决办法
    [[UITabBar appearance] setTranslucent:NO];

    return YES;
}

相关文章

网友评论

      本文标题:5. 进入二级界面返回时,tabbar出现图片和 文字向上移动错

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