Possible Duplicate:
iphone UITextView does not support data detectors when the text view is editable
Why is it that when I do:
cell.title.editable = YES;
the link detection is off? Is there a way to have this on with it being editable?
Possible Duplicate:
iphone UITextView does not support data detectors when the text view is editable
Why is it that when I do:
cell.title.editable = YES;
the link detection is off? Is there a way to have this on with it being editable?
Use the dataDetectorTypes propery of UITextView to enable the auto dection of URL , numbers etc..
MyTextview.dataDetectorTypes = UIDataDetectorTypeLink ;
The possible values which can be assigned to dataDetectorTypes .
UIDataDetectorTypePhoneNumber
,UIDataDetectorTypeLink
more