Bordered UITextView

后端 未结 14 2233
一个人的身影
一个人的身影 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条回答
  •  旧时难觅i
    2020-12-04 10:28

    for Swift Programming, use this

    tv_comment.layer.borderWidth = 2
    tv_comment.layer.borderColor = UIColor(red: 0.2, green: 0.2, blue: 0.2, alpha: 1).CGColor
    

提交回复
热议问题