I'm using attributed text (NSMutableAttributedString, to be exact) to display text that can be either italicized, bold, or have a hyperlink (sometimes combinations of these come up as well).
When I did this with UILabel it displayed exactly as I wanted it, but the links weren't functional. I switched over to UITextView and the links are fully functional, but the italicized and bold fonts aren't working.
We're pulling in the data from xml files, so I can't just specify certain words to set, but I don't think I would need to since this is working with labels.