我想在浏览器中打开textview链接。 它对我来说很好。使用此代码。
textView.dataDetectorTypes = UIDataDetectorTypeLink;
textView.editable = NO;
但是如果用户点击textview,然后链接,我想要单击。 但是目前当用户点击textview时,链接单元格点击不起作用。
我无法找到任何解决方案。
答案 0 :(得分:0)
你可以在textView上添加一个UITapGestureRecognizer UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] init]; [textView addGestureRecognizer:tap]; [点击addTarget:self action:@selector(gotoDetailVc)];
答案 1 :(得分:-1)
您必须为它创建CustomCell,将UITextView放入自定义单元格及其viewDidLoad
方法集
textView.dataDetectorTypes = UIDataDetectorTypeLink;
textView.editable = NO;