I found this blog . From an example: to make a UITextView editable by clicking links, you must set gestureRecognizer and make the UITextView editable by clicking. Code:
- (void)configureTextView { UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(textViewTapped:)]; recognizer.numberOfTapsRequired = 1; textView.editable = NO; textView.dataDetectorTypes = UIDataDetectorTypeLink; [textView addGestureRecognizer:recognizer]; }
source share