UITextView可编辑和链接检测

发布于 2024-11-10 08:50:56 字数 327 浏览 1 评论 0 原文

可能的重复:
iPhone UITextView 不支持数据文本视图可编辑时的检测器

为什么当我这样做时:

cell.title.editable = YES;

链接检测关闭?有没有办法让它可以编辑?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2024-11-17 08:50:56

使用 UITextView 启用 URL、数字等的自动检测。

MyTextview.dataDetectorTypes = UIDataDetectorTypeLink ;

可以分配给 dataDetectorTypes 的可能值。
UIDataDetectorTypePhoneNumberUIDataDetectorTypeLink 更多

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文