Bordered UITextView

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

    #import 
    
    ....
    
    // typically inside of the -(void) viewDidLoad method
    self.yourUITextView.layer.borderWidth = 5.0f;
    self.yourUITextView.layer.borderColor = [[UIColor grayColor] CGColor];
    

提交回复
热议问题