I have a UIView and I'm trying to set its layer properties.
self.colorSwatch = [[UIView alloc] initWithFrame:CGRectMake(400, 150, 100, 100)];
self.colorSwatch.layer.cornerRadius = 8;
However, when I try to access the .layer.cornerRadius
property, I get a warning that says "Property 'cornerRadius' cannot be found in forward class object 'CALayer *'.
What does this mean? Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…