Is it possible to stylize one label with different styles, for example:
"Welcome home, Name", I would like Name to have a different color and font-style such as italics.
NSAttributedString
or NSMutableAttributedString
are what you're looking for.
You can set attributes like font, size, color, background color and style for individual characters within a string.
This site provides a solid tutorial on NSAttributedString
use in Swift.