Bordered UITextView

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

    Works great, but the color should be a CGColor, not UIColor:

    view.layer.borderWidth = 5.0f;
    view.layer.borderColor = [[UIColor grayColor] CGColor];
    

提交回复
热议问题