tags:

views:

534

answers:

2

Quote from Jason Coco it not possible to set multiple in UILabel... but

how to do like this?

any idea?

alt text

is it possible to set mix color in UILabel

example "TEST" can i set E to red color and another to white color?

+1  A: 

Nope, sadly this is not possible with UILabel. You can google some alternatives and the iPad will have NSAttributedString, but with UILabel the entire string has to be one font/color.

Jason Coco
thanks for your infomation Jason Coco
RAGOpoR
could you please answer me another question?
RAGOpoR
@RAGOpoR - They are almost certainly using images, not UILabels.
Jason Coco
Thanks for you advise Jason Coco
RAGOpoR
+3  A: 

FontLabel is a drop-in replacement for UILabel that can take an attributed string as its text. That will allow you use multiple colors and fonts in a single label.

Tom
Why the downvote, as they say?
Tom
thanks for your suggestion. Tom
RAGOpoR