I want to disable text selection on a UITextView. Until now what i\'ve already done is:
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
If you want to prevent the text selection but keep links interactions, add the following textview delegate methods
- (void)textViewDidChangeSelection:(UITextView *)textView { [textView setSelectedRange:NSMakeRange(NSNotFound, 0)]; }