I have an RGB hex code like #ffffff as NSString and want to convert that into an UIColor. Is there a simple way to do that?
|
In some code of mine, I use 2 different functions:
And then I use it like this:
If you prefer to use this as a
This will handle strings like "#abc", "#abcdef31", etc. |
||||
|
If you are using Hex Values..
|
|||||
|
|
There is a nice category for UIColor called "UIColor+Expanded" which has a class method for getting a UIColor from an RGB hex string: It's simple to use:
Plus it adds a lot of other potentially useful utilities to UIColor. More info is available in this article. |
|||||||||||||
|
|
Easy, Just go to this website and type in your hex value: http://www.corecoding.com/utilities/rgb-or-hex-to-float.php |
|||
|
|
|
I think I'd split the six characters into three pairs, then convert that to decimal, then divide that by 255 to get each color component as a float. You can then pass the components to:
|
|||
|
|
|
If you don't want to write all of this code above, you can check this site: http://www.diovo.com/apps/rgb-to-uicolor-converter.html
|
|||||
|
|
|
The easiest way that I found: Hex to UIColor Converter Just type the hex number without '#', and it returns the UIColor code. For example the code for the orange color (#f77f00) is:
|
|||
|
|
|
Don't forget that you have the option to convert your hex values to RGB and enter them in the interface builder. It'll save some lines of code.
|
|||
|
|
|
I was looking for a simple solution and came up with this (not completely Objective-C, but works like a charm):
|
|||
|
