What is the easiest way to have a label with different colors?
For example I want to present the message:
"John Johnson sent you a message"
but I want that "John Johnson" will be in blue color
and the rest of the message in black color
|
What is the easiest way to have a label with different colors? For example I want to present the message: but I want that "John Johnson" will be in blue color |
|||||
|
|
In UILabel basically impossible. If you want to this you must override |
|||
|
|
|
You need the |
|||
|
|
|
Use a
|
|||
|
|
|
I created an UILabel extension to do this. Basically what it does is use NSAttributedString to define the color for some particular range: https://github.com/joaoffcosta/UILabel-FormattedText If you wish to implement this behavior yourself, just do the following:
|
|||
|
|