1 UIColor *white1 = [UIColor whiteColor]; // 白色
2 UIColor *white2 = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0]; // 白色
3 UIColor *orange = [UIColor colorWithRed:1.0 green:0.5 blue:0.0 alpha:1.0]; // 橙色
4 UIColor *imageColor = [UIColor colorWithPatternImage:image]; // 根据图片生成颜色
5 [[UIColor blackColor] setStroke]; // 设置边框颜色
6 [[UIColor blueColor] setFill]; // 设置背景填充色
7 [[UIColor greenColor] set]; // 设置字符颜色
篇二 : UIColor
UIColor
管理颜色
使用三原色生成颜色:
UIColor *color = [UIColor colorWithRed:0.0 green:0.5 blue:1.0 alpha:1.0];
l 色0.0~1.0
l 透明度0.0~1.0
使用已有颜色生成颜色:
UIColor *color = [UIColor whiteColor];
color = [color colorWithAlphaComponent:0.5];
//
指定透明度
使用已有的型生成:
UIColor *color = [UIColor groupTableViewBackgroundColor];
添加UIView的背景图片:(用UIColor方法浪费内存,建议不适用)
UIImage *hogeImage = [UIImage imageNamed:@"hoge.png"];
UIColor *color = [[UIColor alloc] initWithPatternImage:hogeImage];
// 最好使用UIImageView来添加UIView的背景图
已有颜色:
blackColor |
blueColor |
brownColor |
clearColor |
cyanColor |
darkGrayColor |
grayColor |
greenColor |
lightGrayColor |
magentaColor |
orangeColor |
purpleColor |
redColor |
whiteColor |
yellowColor |
已有型:
lightTextColor
darkTextColor
groupTableViewBackgroundColor
viewFlipsideBackgroundColor
scrollViewTexturedBackgroundColor