Swift4.0学习笔记(四)——多行文本输入框(UITextView)

1.创建一个带边框的UITextView

override func viewDidLoad() {
        super.viewDidLoad()
        //定义控件x:30 y:100 width:300 height:40
        let textView = UITextView(frame: CGRect(x: 30, y: 100, width: 300, height: 40))
        self.view.addSubview(textView)
        textView.layer.borderWidth = 1//边框宽度
        textView.layer.borderColor = UIColor.black.cgColor//边框颜色
        textView.text = "这是一个黑边框的UITextView"//设置文本内容
    }
Swift4.0学习笔记(四)——多行文本输入框(UITextView)_第1张图片
普通定义

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

textView.font = UIFont.boldSystemFont(ofSize: 12)//设置字体font属性
textView.textColor = UIColor.red//设置字体颜色
textView.textAlignment = .center//设置内容对齐方式
Swift4.0学习笔记(四)——多行文本输入框(UITextView)_第2张图片
设置属性

3.设置是否可编辑,内容是否可选

textView.isEditable = false//textView不可编辑
textView.isSelectable = true//内容可选

运行效果如下图所示:
Swift4.0学习笔记(四)——多行文本输入框(UITextView)_第3张图片
内容可选

4.给文字中的电话号码和网址自动加链接

textView.dataDetectorTypes = [] //都不加链接
textView.dataDetectorTypes = UIDataDetectorTypes.phoneNumber //只有电话加链接
textView.dataDetectorTypes = UIDataDetectorTypes.link //只有网址加链接
textView.dataDetectorTypes = UIDataDetectorTypes.all //电话和网址都加

要实现添加链接首先需要将textview设置为不可编辑状态,例如:

textView.isEditable = false//textView不可编辑
textView.dataDetectorTypes = .all//设置链接类型
textView.text = "phone:13859222222,\n link:https://www.baidu.com"//设置文本内容
Swift4.0学习笔记(四)——多行文本输入框(UITextView)_第4张图片
link.gif

5.自定义选择菜单
常常我们在选择完内容之后除复制,剪切还可以做一些特殊的操作,比如分享到微信之类的社交媒体上,下面我们举一个自定义选择菜单的简单例子

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        //定义控件x:30 y:100 width:300 height:40
        let textView = UITextView(frame: CGRect(x: 30, y: 100, width: 300, height: self.view.bounds.height - 100))
        self.view.addSubview(textView)
        textView.layer.borderWidth = 1//边框宽度
        
        textView.layer.borderColor = UIColor.black.cgColor//边框颜色
        textView.font = UIFont.boldSystemFont(ofSize: 12)//设置字体font属性
        textView.textColor = UIColor.black//设置字体颜色
        textView.textAlignment = .center//设置内容对齐方式
        
        textView.isSelectable = true//内容可选
        
        textView.isEditable = true//textView不可编辑
        textView.dataDetectorTypes = .all//设置链接类型
        textView.text = "从明天起,做一个幸福的人\n喂马,劈柴,周游世界\n从明天起,关心粮食和蔬菜\n我有一所房子,面朝大海,春暖花开\n从明天起,和每一个亲人通信\n告诉他们我的幸福\n那幸福的闪电告诉我的\n我将告诉每一个人\n给每一条河每一座山取一个温暖的名字"//设置文本内容
        
        let wx = UIMenuItem(title: "微信", action: #selector(openWX))
        let menu = UIMenuController()
        menu.menuItems = [wx]
    }
    
    @objc func openWX(){
        print("打开微信")
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

运行效果如下图所示:
Swift4.0学习笔记(四)——多行文本输入框(UITextView)_第5张图片
自定义选择菜单

文章只是讲解了UITextView最基础的用法,怎么样通过自定义选择菜单实现将选择的内容分享到微信,有兴趣的小伙伴可以自行去查一查资料

你可能感兴趣的:(Swift4.0学习笔记(四)——多行文本输入框(UITextView))