我想将圆角矩形添加到 UITextView,如How to style UITextview to like Rounded Rect text field? . 但是,当我这样做时,我会收到一条错误消息,提示找不到那里使用的方法。我认为这很奇怪,因为它们仍在文档中。另一方面,XCode 在字段层的自动完成中不显示任何内容。这个字段是否以某种方式被弃用或问题出在哪里?
这是我使用的两个代码片段:
@interface AddItemViewController : UIViewController {
IBOutlet UITextView *detailsTextView;
}
@end
Hier will ich dann die Eigenschaften aendern。
- (void)viewDidLoad
{
[super viewDidLoad];
// add rounded rects to detailsTextView
//first leads to warning that method is unknown
[detailsTextView.layer setCornerRadius:8.0f];
// displays error that property is not found on object of type CALayer *
textView.layer.cornerRadius = 8.0f;
detailsTextView.clipsToBounds = YES;
}