UIColor支持16进制颜色设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIColor支持16进制颜色设置相关的知识,希望对你有一定的参考价值。

参考技术A 新建一个类命名为UIColor+Hex,在其中添加类方法实现扩展。

在.h文件中

写一个类方法

+ (UIColor *)colorForHex:(NSString *)hexColor;

.m文件中实现

@implementation UIColor (Utils)

+ (UIColor *)colorForHex:(NSString *)hexColor

NSRange range;

range.location = 0;

range.length = 2;

NSString *rString = [hexColor substringWithRange:range];

range.location = 2;

NSString *gString = [hexColor substringWithRange:range];

range.location = 4;

NSString *bString = [hexColor substringWithRange:range];

unsigned int r, g, b;

[[NSScanner scannerWithString:rString] scanHexInt:&r];

[[NSScanner scannerWithString:gString] scanHexInt:&g];

[[NSScanner scannerWithString:bString] scanHexInt:&b];

return [UIColor colorWithRed:((float) r / 255.0f)

                                       green:((float) g / 255.0f)

                                       blue:((float) b / 255.0f)

                                       alpha:1.0f];



@end

在其他类中如果使用,首先包含头文件,然后直接调用。

例如tabBar.tintColor = [UIColor colorForHex:@"26a6d7"];

以上是关于UIColor支持16进制颜色设置的主要内容,如果未能解决你的问题,请参考以下文章

UIColor使用16进制颜色

swift - 16进制颜色扩展(1.支持# 2.支持不带# , 3支持带0X)

16进制颜色字符串转为UIColor

iOS --- UIColor中使用16进制选取颜色

[iOS]把16进制(#871f78)颜色转换UIColor

iOS工具种之16进制颜色转为UIColor