Property cannot be found on forward class object?

I have a UIView and I'm trying to set its layer properties.

self.colorSwatch = [[UIView alloc] initWithFrame:CGRectMake(, , , )];
self.colorSwatch.layer.cornerRadius = ;

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

It doesn't know what type of object the layer property is. Add #import <QuartzCore/QuartzCore.h> to the top of your file.

You also need to add the QuartzCore framework if you didn't do that already.

上一篇:java_有返回值线程_提前加载例子


下一篇:用spring的@Validated注解和org.hibernate.validator.constraints.*的一些注解在后台完成数据校验