12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // UIColor+AS.m
- // Asteria
- //
- // Created by iOS on 2023/4/25.
- //
- #import "UIColor+AS.h"
- @implementation UIColor (AS)
- + (UIColor *)colorWithHexString:(NSString *)color {
- return [self colorWithHexString:color Alpha:1.0f];
- }
- + (UIColor *)colorWithHexString:(NSString *)color Alpha:(CGFloat)alpha {
- NSString *cString = [[color stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];
- if ([cString length] < 6) {
- return [UIColor clearColor];
- }
-
- //判断前缀
- if ([cString hasPrefix:@"0X"]) {
- cString = [cString substringFromIndex:2];
- }
- if ([cString hasPrefix:@"#"]) {
- cString = [cString substringFromIndex:1];
- }
- if ([cString length] != 6) {
- return [UIColor clearColor];
- }
-
- //从六位数值中找到RGB对应的位数并转换
- NSRange range;
- range.location = 0;
- range.length = 2;
- //R G B
- NSString *rString = [cString substringWithRange:range];
- range.location = 2;
- NSString *gString = [cString substringWithRange:range];
- range.location = 4;
- NSString *bString = [cString 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:alpha];
- }
- @end
|