码迷,mamicode.com
首页 > 编程语言 > 详细

Swift - UITextView

时间:2019-01-06 12:00:03      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:over   hat   selector   print   菜单   对齐   tco   class   load()   

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        //创建UITextView
        let textView = UITextView(frame: CGRect(x: 10, y: 100, width: 200, height: 100))
        textView.layer.borderWidth = 1 //边框宽度
        textView.layer.borderColor = UIColor.gray.cgColor//设置边框颜色
        self.view.addSubview(textView)//将TextView添加到视图中
        //是否可编辑
        textView.isEditable = false
        //内容是否可选(进行copy等操作)
        textView.isSelectable = false//如果内容不可选,那么也无法进行编辑
        //设置字体
        textView.font = UIFont.systemFont(ofSize: 17)
        //设置字体颜色
        textView.textColor = UIColor.blue
        //设置对齐方式
        textView.textAlignment = .center
        //自动识别电话,地址并跳转(只有在不可编译状态下才能识别)
        textView.dataDetectorTypes = []//不识别
        /*
         phoneNumber 识别电话
         link 识别地址
         all 电话、地址
        */
        //自定义选择内容后的菜单(在选中一段文本后将会显示一系列copy,cur,replace等选项,我们也可以自定义一些选项)
        let share = UIMenuItem(title: "分享", action: #selector(ViewController.Share))
        let WeChat = UIMenuItem(title: "微信", action: #selector(ViewController.WeChat))
        let menu = UIMenuController()
        menu.menuItems = [share,WeChat]
    }
    @objc func Share(){
        print("已分享")
    }
    @objc func WeChat(){
        print("微信")
    }

}

Swift - UITextView

标签:over   hat   selector   print   菜单   对齐   tco   class   load()   

原文地址:https://www.cnblogs.com/iOS-Development/p/10227396.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!