码迷,mamicode.com
首页 > 其他好文 > 详细

Property cannot be found on forward class object?

时间:2014-10-29 12:39:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   strong   div   on   

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

 

 

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.

Property cannot be found on forward class object?

标签:style   blog   color   ar   for   sp   strong   div   on   

原文地址:http://www.cnblogs.com/ghgyj/p/4059037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!