美文网首页
UITextField

UITextField

作者: Alan龙马 | 来源:发表于2017-05-19 11:03 被阅读12次
    lazy var editTextField: UITextField = {
            
            let textField = UITextField ()
            textField.layer.borderColor = RGB(r: 231, g: 234, b: 237).cgColor
            textField.layer.borderWidth = 1
            textField.font = UIFont.systemFont(ofSize: 14)
            textField.textColor = UIColor.black
            textField.textAlignment = .center
            
            return textField
        }()
    

    相关文章

      网友评论

          本文标题:UITextField

          本文链接:https://www.haomeiwen.com/subject/jiqyxxtx.html