Hyperlinks inside UITextView text do not work

I am trying to make the hyperlink inside the text work, the text will appear as a hyperlink on the simulator, but will not be clicked despite the fact that I am using the following line:

view.dataDetectorTypes = UIDataDetectorTypeLink;
view.userInteractionEnabled = YES;

tl; dr Why can't I click the links inside my text, even though it has the same properties as millions of other people.

+3
source share

All Articles