為了達(dá)到上圖這種效果,網(wǎng)上搜了很久,有說用自定義tabBar的,有說創(chuàng)建一個(gè)view然后addsubview的,然而試了N個(gè)還是解決不了我的需求,下面我們來開始上菜.
背景顏色
//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()