我有一个 UITextView,我想改变它的边框颜色和圆角。据此,我可以以编程方式进行。
CALayer *imageLayer = textView.layer;
[imageLayer setCornerRadius:10];
[imageLayer setBorderWidth:1];
imageLayer.borderColor=[[UIColor lightGrayColor] CGColor];
我不喜欢这种方式,所以我创建了一个名为 DetailTextView 的 UITextView 子类。我应该如何在子类中更改边框颜色和圆角?