美文网首页
iOS13 UITabBar 去掉多余的横线

iOS13 UITabBar 去掉多余的横线

作者: 追逐萌的孩子 | 来源:发表于2019-12-17 09:32 被阅读0次

// 去掉黑线
    UITabBar *tabBar = [UITabBar appearance];
    [tabBar setBackgroundColor:[UIColor whiteColor]];
    [tabBar setBackgroundImage:[UIImage new]];
    [tabBar setShadowImage:[UIImage new]];
   
    if (@available(iOS 13.0, *)){
        UITabBarAppearance* tabBarAppearance = [[UITabBarAppearance alloc] init];
        tabBarAppearance.shadowColor = [UIColor clearColor];
        [tabBar setStandardAppearance:tabBarAppearance];
    }

相关文章

网友评论

      本文标题:iOS13 UITabBar 去掉多余的横线

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