Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I had to do that too in a project. I used this class from another post but it's only for one single line, I don't know if it is enough for you. iPhone - UILabel containing text with multiple fonts at the same time – William Remacle Oct 17 '10 at 10:25

3 Answers

up vote 3 down vote accepted

You can't do this within a UILabels. But my suggestion is that instead of using multiple UILabel just concentrate on NSAttributedString. Find UIControllers that draw NSAttributedString because UILabel, UITextView do not support NSAttributedString.

share|improve this answer

Try TTTAttributedLabel. It's a subclass of UILabel that supports NSAttributedStrings, which would make it easy to have multiple colors, fonts, and styles in the same string.


Edit: Alternatively, if you don't want the 3rd party dependency and are targeting iOS 6, UILabel now has the attributedText property.

share|improve this answer
1  
Nice one. NSAttributedString is definitely the way to go - and the class you're suggesting seems very nice. – iceydee May 9 '11 at 19:27

UILabel can only have one color. You either need a more sophisticated element, or - probably easier - just use two separate labels. Use [yourLabel sizeToFit]; and place them accordingly.

share|improve this answer
okkk i will try to explore sizeToFit property of uilabel, thanks for replying – pankaj Oct 17 '10 at 8:48

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.