作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 html 文本设置为 UITextView 并将 UIDataDetectorTypeLink 设置为 DataDetectorTypes 但它不起作用。下面是代码:`
self.dictHelp =[NSMutableDictionary dictionaryWithDictionary:response];
[self.txtView setValue:[self.dictHelp valueForKey:@"HelpText"] forKey:@"contentToHTMLString"];
self.txtView.userInteractionEnabled = YES;
[self.txtView setDataDetectorTypes:UIDataDetectorTypeLink];`
文本值为“如果您需要帮助,请通过 customerservice@xxxx.org 联系 XXXX”我做错了什么?
最佳答案
只需检查这段代码,我在这个 Link 中找到:- 这是一种解决方法,但效果很好!
self.txtView.selectable = NO; // set it to NO clears all possible data detection work so far.
self.txtView.selectable = YES; // set it to YES so that actual links are detected.
关于ios 8 UITextView UIDataDetectorTypeLink 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30389995/
我在 UITextView(使用 UIDataDetectorTypes 检测)中有一个电子邮件地址,它在应用程序中打开邮件编辑器(如 MFMailComposeViewController),而不是
我将 html 文本设置为 UITextView 并将 UIDataDetectorTypeLink 设置为 DataDetectorTypes 但它不起作用。下面是代码:` self.dictHel
我将一些 url 传递给 UITextView 并且它们被检测到使用UIDataDetectorTypeLink。现在我需要改变颜色链接(url)到一些uicolor。我不知道该怎么做。 这是显示我的
我是一名优秀的程序员,十分优秀!