美文网首页
UITabBar 背景颜色及常用总结

UITabBar 背景颜色及常用总结

作者: Vincent1328 | 来源:发表于2016-04-21 22:54 被阅读177次

    为了达到上图这种效果,网上搜了很久,有说用自定义tabBar的,有说创建一个view然后addsubview的,然而试了N个还是解决不了我的需求,下面我们来开始上菜.

    背景颜色


    //swift
    UITabBar.appearance().backgroundColor=UIColor(red:76/255, green:76/255, blue:76/255, alpha:1)
    
    UITabBar.appearance().backgroundImage=UIImage()
    
    //oc
    [[UITabBarappearance]setBackgroundImage:[[UIImagealloc]init]];
    
    [[UITabBarappearance]setBackgroundColor:[UIColorwhiteColor]];
    
    

    选中颜色


    UITabBar.appearance().tintColor=UIColor.greenColor()
    
    

    相关文章

      网友评论

          本文标题:UITabBar 背景颜色及常用总结

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