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

I need to convert a string input from UI to a hexadecimal number in objective c. The string is an HTML color code like "ff0000" (the '#' will be dealt with diagrammatically) and it is supposed to be converted to the number ff0000 in order to provide color selection. Alternatively, is there a color chooser in objective c? didn't find one in the xib objects.

share|improve this question
possible duplicate of How to convert HEX RGB color codes to UIColor? – rob mayoff Dec 31 '12 at 21:19
Fis'Zen, the link you provide deals with converting hexadecimal to decimal, it is not what I asked. @rob, you are right, but since I did search for an answer and couldn't find that post (it uses a different way to describe the problem) it might be better to leave both intact, if only so people can find my question and see your link, maybe? – Yekhezkel Yovel Dec 31 '12 at 21:45
Note that there is really no such thing as a hexadecimal number, that is just a display type. So the question might be better as: Convert a hexadecimal string representation to an integer. – Zaph Dec 31 '12 at 22:05

1 Answer

up vote 2 down vote accepted

From Objective C parse hex string to integer

unsigned result = 0;
NSScanner *scanner = [NSScanner scannerWithString:@"ff0000"];
[scanner scanHexInt:&result];

or using "c":

uint32_t value;
NSString *stringValue = @"ff0000";
const char *string = [stringValue cStringUsingEncoding:NSUTF8StringEncoding];
sscanf(string, "%x" , &value);
share|improve this answer
Thanks, I guess I'll try this. – Yekhezkel Yovel Dec 31 '12 at 22:05

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.