UITextField border color

后端 未结 9 1470
一生所求
一生所求 2020-11-28 02:43

I have really great wish to set my own color to UITextField border. But so far I could find out how to change the border line style only.

I\'ve used background prope

9条回答
  •  感情败类
    2020-11-28 03:20

    Update for swift 5.0

    textField.layer.masksToBounds = true
    textField.layer.borderColor = UIColor.blue.cgColor
    textField.layer.borderWidth = 1.0
    

提交回复
热议问题