Search code examples
iosuilabel

Selectable UILabel contents


I have a list of URL addresses in a iOS Label object. It does not appear that the user can select and copy an item from the list and paste it into their Safari browser on the iOS device. Is there a way to accomplish this?


Solution

  • This feature is not there in UILabel.

    You need to use UITextField or UITextView . Also do not forget to change its appearance and using

    [... setEditable:NO];