码迷,mamicode.com
首页 > 移动开发 > 详细

iOS颜色转换

时间:2015-12-14 14:33:24      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

各种颜色之间的转换,会陆续更新,

HEX颜色转UIColor 

- (UIColor*)ConvertWith:(NSInteger)RGB  Alpha:(CGFloat)a
{
    NSInteger r = (RGB & 0xFF0000) >> 16;
    NSInteger G = (RGB & 0xFF00) >> 8;
    NSInteger B = (RGB & 0xFF);
    UIColor * color = [[UIColor alloc]initWithRed:r green:G blue:B alpha:a];
    return color;
}

 

iOS颜色转换

标签:

原文地址:http://www.cnblogs.com/kongkaikai/p/5044962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!