Bordered UITextView

后端 未结 14 2187
一个人的身影
一个人的身影 2020-12-04 10:11

I want to have a thin gray border around a UITextView. I have gone through the Apple documentation but couldn\'t find any property there. Please help.

14条回答
  •  春和景丽
    2020-12-04 10:34

    In Swift 3, you may use the following two lines:

    myText.layer.borderColor = UIColor.lightGray.cgColor
    
    myText.layer.borderWidth = 1.0
    

提交回复
热议问题