0

我想在浏览器中打开 textview 链接。它对我来说很好。使用此代码。

textView.dataDetectorTypes = UIDataDetectorTypeLink;
textView.editable = NO;

但是如果用户点击文本视图而不是链接,我想要单元格点击。但目前,当用户点击 textview 时,其他链接单元格点击不起作用。

我找不到任何解决方案。

4

2 回答 2

0

您可以在 textView 上添加一个 UITapGestureRecognizer,例如 UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc]init]; [textView addGestureRecognizer:tap]; [点击 addTarget:self action:@selector(gotoDetailVc)];

于 2015-10-30T06:37:12.553 回答
-1

您必须为其制作 CustomCell,将 UITextView 放入自定义单元格及其viewDidLoad方法集

textView.dataDetectorTypes = UIDataDetectorTypeLink;
textView.editable = NO;
于 2013-01-29T07:55:21.580 回答