Upvote:2

Aprove answer

Finally found an ideal open source solution (supports both iOS 5.0 and iOS 6): the OHAttributedLabel, which is capable of both rich format and touch handling.

https://github.com/AliSoftware/OHAttributedLabel

Upvote:3

NSAttributedString lets you do this. If you have access to the iOS 5 developers cookbook by Erica Sadun there is a recipe for a wrapper around NSMutableAttributedString which makes it simple to add text piece by piece, changing attributes as you go.

Here is the source on Erica's githuib


Credit Goes to: stackoverflow.com

Related question with same questions but different answers