Possible Duplicate:
iphone UITextView does not support data detectors when the text view is editable
为什么当我这样做时:
cell.title.editable = YES;
链接检测已关闭?有一种方法可以对其进行编辑吗?
最佳答案
使用UITextView的dataDetectorTypes属性来启用URL的自动部分,数字等。
MyTextview.dataDetectorTypes = UIDataDetectorTypeLink ;
UIDataDetectorTypePhoneNumber
,UIDataDetectorTypeLink
more