我在 .xib 文件中有一个 UIView 作为 IBOutlet 连接到它的相关 .h 文件。我希望设置它的图层属性:borderColor、borderWidth 和cornerRadius。
我以前做过一次,这很容易。它是这样的:
-(void) viewDidLoad {
[super viewDidLoad];
self.myView.layer.borderColor = [UIColor blueColor].CGColor;
self.myView.layer.borderWidth = 1.0f;
self.myView.layer.cornerRadius = 10.0f;
}
出于某种原因,当我在这个新项目中执行此操作时,这些图层属性不可用。当我写“self.myView.layer”时。我没有选择填写。
有谁知道可能是什么问题?