how can i have a UILabel with two different colors for the font. I will have text in two different strings and i want to make text with first string as red and second as green. The length of both the string is variable.
Thanks in advance
|
|
You can't do this within a |
||||
|
|
|
Try TTTAttributedLabel. It's a subclass of UILabel that supports Edit: Alternatively, if you don't want the 3rd party dependency and are targeting iOS 6, |
|||||
|
|
UILabel can only have one color. You either need a more sophisticated element, or - probably easier - just use two separate labels. Use |
|||
|