一、首先简单的说下UIView的CALayer.
UIView之所以能显示在屏幕上,完全是因为它内部的一个图层,在创建UIView对象时,UIView内部会自动创建一个图层(即CALayer对象),通过UIView的layer属性可以访问这个层
@property(nonatomic,readonly,retain) CALayer *layer;
当UIView需要显示到屏幕上时,会调用drawRect:方法进行绘图,并且会将所有内容绘制在自己的图层上,绘图完毕后,系统会将图层拷贝到屏幕上,于是就完成了UIView的显示。因此,通过操作这个CALayer对象,可以很方便地调整UIView的一些界面属性,比如:阴影、圆角大小、边框宽度和颜色等。
总结:UIView本身不具备显示的功能,拥有显示功能的是它内部的图层。
二、这里我们要讲的是masksToBounds
如上面所说,我们可以对UIView设置它的圆角
<pre><code> UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 120, 120)];
view.backgroundColor = [UIColor blackColor];
view.layer.cornerRadius = 10;
[self.view addSubview:view];</code></pre>
这段代码会按照我们的预想出现圆角效果.
但是当我们往view上面添加一个UILabel或者一个UIButton的时候,下面的代码就不管用了
<pre><code>UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 0, 30, 30)];
label.text = @"93";
label.textAlignment = NSTextAlignmentCenter;
label.backgroundColor =[UIColor redColor] ;
label.layer.cornerRadius = 15;
[view addSubview:label];</code></pre>
我们需要再设置一个属性,这个label的圆角效果才能出来
label.layer.masksToBounds = YES;
这里有一篇关于CALayer的简介,写得很不错. 文大大写的文章CALayer简介