设置颜色的一个非常有用的宏

#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

 

[[UINavigationBar appearance] setBarTintColor:UIColorFromRGB(0x067AB5)];  

原文地址:https://www.cnblogs.com/NSNULL/p/4366960.html