我希望将圆角的Rect添加到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;
}
答案 0 :(得分:18)
在项目中添加QuartzCore框架
将此内容包含在您的.h文件中
#import <QuartzCore/QuartzCore.h>