UIView的背景颜色
原创wx6100ce7ff01a6 ©著作权
©著作权归作者所有:来自51CTO博客作者wx6100ce7ff01a6的原创作品,请联系作者获取转载授权,否则将追究法律责任
一个UIColor代表一种颜色,通过UIColor的类方法,可以获得很多常用的颜色
+ (UIColor *)blackColor; // 0.0 white 黑色
+ (UIColor *)darkGrayColor; // 0.333 white 深灰色
+ (UIColor *)lightGrayColor; // 0.667 white 亮灰色
+ (UIColor *)whiteColor; // 1.0 white 白色
+ (UIColor *)grayColor; // 0.5 white 灰色
+ (UIColor *)redColor; // 1.0, 0.0, 0.0 RGB 红色
+ (UIColor *)greenColor; // 0.0, 1.0, 0.0 RGB 绿色
+ (UIColor *)blueColor; // 0.0, 0.0, 1.0 RGB 蓝色
+ (UIColor *)cyanColor; // 0.0, 1.0, 1.0 RGB 青色
+ (UIColor *)yellowColor; // 1.0, 1.0, 0.0 RGB 黄色
+ (UIColor *)magentaColor; // 1.0, 0.0, 1.0 RGB 品红
+ (UIColor *)orangeColor; // 1.0, 0.5, 0.0 RGB 橙色
+ (UIColor *)purpleColor; // 0.5, 0.0, 0.5 RGB 紫色
+ (UIColor *)brownColor; // 0.6, 0.4, 0.2 RGB 棕色
+ (UIColor *)clearColor; // 0.0 white, 0.0 alpha 清除颜色(空色
上一篇:10131
下一篇:UIView常见方法
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
去除idea中xml背景颜色、背景颜色Java、IDEA
-
Android中判断背景颜色 android背景颜色的代码
xml中Android控件设定背景颜色或字体颜色,需要在Color属性中指定十六进制颜色码。如设置背景颜色:android:background="#FF0000";//红色设置字体颜色:android:textColor="#87CEEB";//天蓝色其中需要重要说明的是如何设置控件背景透明,如代码:android:background="@android:color/transparent"
Android中判断背景颜色 十六进制颜色码 在xml中设定Android控件背景颜色 Android控件设置背景色透明 安卓系统十六进制颜色值