Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I create a UIColor from a hexadecimal string format, such as #00FF00?

share|improve this question
If any one of these great answers worked for you, you should definitely accept it (by checking off the grey checkmark beside the answer) – Scott Kohlert Feb 24 at 13:27

9 Answers

I've found the simplest way to do this is with a macro. Just include it in your header and it's available throughout your project.

#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

uicolor macro with hex values

share|improve this answer
Actually this is not so great a solution because it is difficult to define more then one color. – Eric Brotto Jul 27 '12 at 15:08
3  
This is the best way I've ever seen! Thanks! – Raspu Aug 29 '12 at 15:48
3  
This is great except it doesn't do what the questioner asks, which is to convert a hex STRING into a UIColor. This converts an integer to a UIColor. – darrinm Sep 12 '12 at 22:44
2  
@darrinm It does return a UIColor using hex when you call it like: label.textColor = UIColorFromRGB(0xBC1128); – Mohamed A.Karim Nov 4 '12 at 23:58
1  
@MohamedA.Karim That is an example of returning a UIColor from a hex format integer (0x...) not a hex format string ("#..."). Great if that's what you want, but not what the questioner asked for. – darrinm Nov 6 '12 at 2:28
show 5 more comments

I've got a solution that is 100% compatible with the hex format strings used by Android, which I found very helpful when doing cross-platform mobile development. It lets me use one color palate for both platforms. Feel free to reuse without attribution, or under the Apache license if you prefer.

#import "UIColor+HexString.h"

@interface UIColor(HexString)

+ (CGFloat) colorComponentFrom: (NSString *) string start: (NSUInteger) start length: (NSUInteger) length;

@end


@implementation UIColor(HexString)

+ (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:
            [NSException raise:@"Invalid color value" format: @"Color value %@ is invalid.  It should be a hex value of the form #RBG, #ARGB, #RRGGBB, or #AARRGGBB", hexString];
            break;
    }
    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;
}

@end 
share|improve this answer
1  
in colorComponentFrom:start:length:, shouldn't you have return hexComponent / 0xFF; // divide by 255, not 256 ? The largest hex value you should get back is 0xFF, thus that is what you should be dividing by 0xFF (255). – Sam Sep 13 '11 at 16:25
Good catch Sam. Edited to reflect the change. – Micah Hainline Sep 13 '11 at 18:58
+1 I like your solution – Sam Sep 13 '11 at 19:01
2  
This is great, cheers. Also, instead of a category on UIColor you could make one on NSString to be able to have syntax like [@"#538aa4" toColor] – Dan2552 Oct 12 '12 at 11:54
1  
This solution is great, I would suggest to add "Private" for the name of the private interface to avoid a compiler warning. @interface UIColor(Private) – djleop Dec 14 '12 at 9:56
show 3 more comments

A concise solution:

// Assumes input like "#00FF00" (#RRGGBB).
+ (UIColor *)colorFromHexString:(NSString *)hexString {
    unsigned rgbValue = 0;
    NSScanner *scanner = [NSScanner scannerWithString:hexString];
    [scanner setScanLocation:1]; // bypass '#' character
    [scanner scanHexInt:&rgbValue];
    return [UIColor colorWithRed:((rgbValue & 0xFF0000) >> 16)/255.0 green:((rgbValue & 0xFF00) >> 8)/255.0 blue:(rgbValue & 0xFF)/255.0 alpha:1.0];
}
share|improve this answer
Thanx really useful ans...:) – Sweety Mar 29 at 6:18

There is no builtin conversion from a hexadecimal string to a UIColor (or CGColor) that I'm aware of. However, you can easily write a couple of functions for this purpose - for example, see iphone development accessing uicolor components

share|improve this answer
3  
+1 If you scroll way down, the method in question is +colorWithHexString:. – Rob Napier Oct 13 '09 at 13:29
@RobNapier +colorWithHexString: doesn't work. At least in my case. :) – Mr. 17 Dec 6 '12 at 9:53

This is another alternative.

- (UIColor *)colorWithRGBHex:(UInt32)hex
{
    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:1.0f];
}
share|improve this answer

I found a good UIColor category for this, UIColor+PXExtenions.

Usage: UIColor *mycolor = [UIColor pxColorWithHexValue:@"#BADA55"];

share|improve this answer

There is a nice UIColor category with many features in it.

Usage:

textView.textColor = [UIColor colorWithHexString:textColorHex];
NSLog(@"Text Color Hex: %@", textColorHex);

Where textColorHex has a form of @"FFFFFF" without # symbol.

share|improve this answer

Another version with alpha

#define UIColorFromRGBA(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF000000) >> 24))/255.0 green:((float)((rgbValue & 0xFF0000) >> 16))/255.0 blue:((float)((rgbValue & 0xFF00) >> 8 ))/255.0 alpha:((float)((rgbValue & 0xFF))/255.0)]
share|improve this answer

Erica also has a great color extension category for iOS and OSX.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.