How can I create a UIColor from a hexadecimal string format, such as #00FF00?
|
|
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.
http://cocoamatic.blogspot.com/2010/07/uicolor-macro-with-hex-values.html |
|||||||||||||||||||
|
|
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.
|
|||||||||||||||||
|
|
A concise solution:
|
|||
|
|
|
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 http://arstechnica.com/apple/guides/2009/02/iphone-development-accessing-uicolor-components.ars. |
|||||||
|
|
This is another alternative.
|
||||
|
|
|
I found a good UIColor category for this, UIColor+PXExtenions. Usage: |
|||
|
|
|
There is a nice UIColor category with many features in it. Usage:
Where textColorHex has a form of @"FFFFFF" without # symbol. |
|||
|
|
|
Another version with alpha
|
|||
|
|
