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

添加阴影效果

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

标签:

 1 @implementation ICSDropShadowView
 2 
 3 - (void)drawRect:(CGRect)rect
 4 {
 5     self.layer.shadowOffset = CGSizeZero;
 6     self.layer.shadowOpacity = 0.7f;
 7     
 8     UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:self.bounds];
 9     self.layer.shadowPath = shadowPath.CGPath;
10 }

设置阴影效果

添加阴影效果

标签:

原文地址:http://www.cnblogs.com/fisland/p/4278449.html

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