Here is my problem. I have a ViewController in which there is a label with a text and I want to change the color of some of the words in that sentence. The string is an NSLocalizedString which is written in different languages and changes based on the user system language.
self.welcomeMessageLabel.text = NSLocalizedString(@"welcome_message", nil);
This is the result that I want to achieve.

How can I color part of the text?
