swift3.0关于UITextField中的使用收起键盘等一些方法


http://www.jianshu.com/u/afebe9d5dc84 
https://github.com/13670242169/QYPSQLFMDBManager.git 
https://github.com/13670242169/QYPWEIBO.git 

本文纯属作为iOS程序员的一点点个人观点有错误之处敬请原谅

1.首先是定义属性,遵守代理方法

let tf = UITextField()

2.穿件

tf.frame = CGRect(x:60,y:68,width:SCREEN_WIDTH - 60 ,height:30)
        tf.placeholder = "填写唯一标示"
        tf.delegate = self
        tf.returnKeyType = .done
        tf.borderStyle = .bezel
        view.addSubview(tf)

3.实现代理方法//这个代理方法是用来收起键盘使用的

 func textFieldShouldReturn(_ textField: UITextField) -> Bool {
//        textField.resignFirstResponder()//1这里是一种收键盘的方法,逼格稍微高点

        view.endEditing(true)//2这是另外一种收键盘的方法,比较通用
        return true
    }

你可能感兴趣的:(关于swift项目经验总结)