Is there a way to have the textColor property of a UILabel be two different UIColors? Basically I\'m trying to make the first characte
textColor
UILabel
UIColors
UILabel doesnot supprt this property...
Use should use NSAttributedString... and use controllers for drawing NSAttributesString...
Controller for NSAttributedString
UPDATE:
From iOS 6 you can do the following :
label.attributedText = attributedString;