1.選中某個(gè)Tabar 圖標(biāo)顏色為白色(記錄時(shí)間:2017.09.21)
關(guān)鍵點(diǎn):colorWithPatternImage
查找到問題是由于設(shè)置tintColor時(shí)沃琅,UIColor 是通過圖片形式生成的(ps:美工用的Windows绞愚,和MacOS有色差,所以選用了通過圖片獲取色值)
self.tabBar.tintColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"imageName"]];
這里只要把tintColor 設(shè)置為通過RGB形式獲取色值解決問題
self.tabBar.tintColor = [UIColor colorWithRed:103.0f/255.0f green:179.0f/255.0f blue:135.0f/255.0f alpha:1.0f];
選中時(shí),圖標(biāo)沒有被設(shè)置成綠色圖01
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者