Bordered UITextView

后端 未结 14 2222
一个人的身影
一个人的身影 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:47

    Here's the code I used, to add a border around my TextView control named "tbComments" :

    self.tbComments.layer.borderColor = [[UIColor grayColor] CGColor];
    self.tbComments.layer.borderWidth = 1.0;
    self.tbComments.layer.cornerRadius = 8;
    

    And here's what it looks like:

    enter image description here

    Easy peasy.

提交回复
热议问题