码迷,mamicode.com
首页 > 移动开发 > 详细

ios关于layer的一些常用属性

时间:2015-07-02 11:46:46      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

UILabel * labb = 。。。

//set the border of labb

labb.layer.borderWidth = 1;

labb.layer.borderColor = [UIColor lightGrayColor].CGColor;

 

//创建圆角图片

fixLab.layer.masksToBounds = YES;

fixLab.layer.cornerRadius = fixLab.frame.size.height*0.1;

 

[self.view addSubview:labb];

 

ios关于layer的一些常用属性

标签:

原文地址:http://www.cnblogs.com/isItOk/p/4615408.html

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