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

iOS 十六进制转RGB

时间:2015-03-31 19:56:43      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

+ (UIColor *)colorWithRGBHex:(UInt32)hex
{
    return [UIColor colorWithRGBHex:hex alpha:1.0f];
}

+ (UIColor *)colorWithRGBHex:(UInt32)hex alpha:(CGFloat)alpha
{
    int r = (hex >> 16) & 0xFF;
    int g = (hex >> 8) & 0xFF;
    int b = (hex) & 0xFF;

    return [UIColor colorWithRed:r / 255.0f green:g / 255.0f blue:b / 255.0f alpha:alpha];
}

 

iOS 十六进制转RGB

标签:

原文地址:http://www.cnblogs.com/airy99/p/4381644.html

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