Reputation: 4349
I have a UITextView
whose content I have set in my .xib.
I am trying to get it to recognize a link using these settings:
Unfortunately the link does not show up when I run in the simulator (it only shows as plain text):
How can I get the UITextView
to recognize the link and display it properly?
Upvotes: 23
Views: 6338
Reputation: 17419
Set your Textview behavior to Selectable ,
And make sure you have enabled User Interaction .
Upvotes: 56