Labels As Links

UILabels don’t have methods for triggering events when they are clicked so you can detect a click manually from the touch event
(more…)

Labels General

Add Label View Object

Declare in the .h

	IBOutlet UILabel *MyLabelName;

(more…)

Rich Text Labels

 

A label won’t take rich text so you have two choices, use a WebView or multiple labels styled as required.

(more…)