swift uiwebview 数字被点击默认成拨打电话

文字中的电话号码和网址自动链接
1
2
3
4
textview.dataDetectorTypes = UIDataDetectorTypes . None //都不加链接
PhoneNumber //只有电话加链接
Link //只有网址加链接
All //电话和网址都加

禁用了就不会自动变为连接了
原文: http://www.cnblogs.com/Free-Thinker/p/4838141.html
1、多行文本控件的创建
1
2
3
4
var textview= UITextView (frame: CGRectMake (10,100,200,100))
textview.layer.borderWidth=1 //边框粗细
textview.layer.borderColor= UIColor .grayColor(). CGColor //边框颜色
self .view.addSubview(textview)

2,是否可编辑
1
textview.editable= false

3,内容是否可选
textview.selectable=false

4,属性font设置字体,textColor设置字体颜色,textAlignment设置对齐方式

5,给文字中的电话号码和网址自动链接
1
2
3
4
textview.dataDetectorTypes = UIDataDetectorTypes . None //都不加链接
PhoneNumber //只有电话加链接
Link //只有网址加链接
All //电话和网址都加

6,自定义选择内容后的菜单
我们在看新闻或小说的时候,常常在点选文字后会弹出菜单进行选择,复制等操作。我们可以在这菜单添加一些其他内容,如加上邮件”“微信”等按钮选项

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import UIKit
class ViewController : UIViewController {
override func viewDidLoad() {
super .viewDidLoad()
mail = UIMenuItem (title: "邮件" ,action: "onMail" )
weixin = "微信" "onWeiXin" )
menu = UIMenuController ()
menu.menuItems = NSArray (array: [mail,weixin])
}
onMail(){
println ( "mail" )
}
onWeiXin(){
"weixin" )
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...