I have a UITextView which is managed via Interface Builder. As data detection I have \"Links\" checked. In iOS 6 everything is working fine and links are highli
UITextView
If you are adding UITextview programmatically just add below lines:
_textView.userInteractionEnabled = YES; _textView.dataDetectorTypes = UIDataDetectorTypeLink; _textView.scrollEnabled = NO; _textView.editable = NO;
This worked for me.