Convert string color to UIColor

Source: Internet
Author: User

Convert string color to UIColor

 

+ (UIColor *)colorWithHexString:(NSString *)hexString{    NSString *colorString = [[hexString stringByReplacingOccurrencesOfString: @"#" withString: @""] uppercaseString];    CGFloat alpha, red, blue, green;    switch ([colorString length]) {        case 3: // #RGB            alpha = 1.0f;            red   = [self colorComponentFrom: colorString start: 0 length: 1];            green = [self colorComponentFrom: colorString start: 1 length: 1];            blue  = [self colorComponentFrom: colorString start: 2 length: 1];            break;        case 4: // #ARGB            alpha = [self colorComponentFrom: colorString start: 0 length: 1];            red   = [self colorComponentFrom: colorString start: 1 length: 1];            green = [self colorComponentFrom: colorString start: 2 length: 1];            blue  = [self colorComponentFrom: colorString start: 3 length: 1];            break;        case 6: // #RRGGBB            alpha = 1.0f;            red   = [self colorComponentFrom: colorString start: 0 length: 2];            green = [self colorComponentFrom: colorString start: 2 length: 2];            blue  = [self colorComponentFrom: colorString start: 4 length: 2];            break;        case 8: // #AARRGGBB            alpha = [self colorComponentFrom: colorString start: 0 length: 2];            red   = [self colorComponentFrom: colorString start: 2 length: 2];            green = [self colorComponentFrom: colorString start: 4 length: 2];            blue  = [self colorComponentFrom: colorString start: 6 length: 2];            break;        default:            return nil;    }    return [UIColor colorWithRed: red green: green blue: blue alpha: alpha];}+ (CGFloat) colorComponentFrom: (NSString *) string start: (NSUInteger) start length: (NSUInteger) length {    NSString *substring = [string substringWithRange: NSMakeRange(start, length)];    NSString *fullHex = length == 2 ? substring : [NSString stringWithFormat: @"%@%@", substring, substring];    unsigned hexComponent;    [[NSScanner scannerWithString: fullHex] scanHexInt: &hexComponent];    return hexComponent / 255.0;}


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.