给uiview增加阴影效果的代码

iPhone之为UIView设置阴影(CALayer的shadowColor,shadowOffset,shadowOpacity,shadowRadius,shadowPath属性)

50558人阅读 评论(7) 收藏 举报
分类:

效果图:



以下代码实现:

第一个图片的代码

  1. //加阴影--任海丽编辑  
  2.     _imageView.layer.shadowColor = [UIColor blackColor].CGColor;//shadowColor阴影颜色  
  3.     _imageView.layer.shadowOffset = CGSizeMake(4,4);//shadowOffset阴影偏移,x向右偏移4,y向下偏移4,默认(0, -3),这个跟shadowRadius配合使用  
  4.     _imageView.layer.shadowOpacity = 0.8;//阴影透明度,默认0  
  5.     _imageView.layer.shadowRadius = 4;//阴影半径,默认3  


第二个图片的代码

  1. _imageView1.layer.shadowColor = [UIColor yellowColor].CGColor;//shadowColor阴影颜色  
  2. _imageView1.layer.shadowOffset = CGSizeMake(0,0);//shadowOffset阴影偏移,默认(0, -3),这个跟shadowRadius配合使用  
  3. _imageView1.layer.shadowOpacity = 1;//阴影透明度,默认0  
  4. _imageView1.layer.shadowRadius = 3;//阴影半径,默认3  
  5.   
  6. //路径阴影  
  7. UIBezierPath *path = [UIBezierPath bezierPath];  
  8.   
  9. float width = _imageView1.bounds.size.width;  
  10. float height = _imageView1.bounds.size.height;  
  11. float x = _imageView1.bounds.origin.x;  
  12. float y = _imageView1.bounds.origin.y;  
  13. float addWH = 10;  
  14.   
  15. CGPoint topLeft      = _imageView1.bounds.origin;  
  16. CGPoint topMiddle = CGPointMake(x+(width/2),y-addWH);  
  17. CGPoint topRight     = CGPointMake(x+width,y);  
  18.   
  19. CGPoint rightMiddle = CGPointMake(x+width+addWH,y+(height/2));  
  20.   
  21. CGPoint bottomRight  = CGPointMake(x+width,y+height);  
  22. CGPoint bottomMiddle = CGPointMake(x+(width/2),y+height+addWH);  
  23. CGPoint bottomLeft   = CGPointMake(x,y+height);  
  24.   
  25.   
  26. CGPoint leftMiddle = CGPointMake(x-addWH,y+(height/2));  
  27.   
  28. [path moveToPoint:topLeft];  
  29. //添加四个二元曲线  
  30. [path addQuadCurveToPoint:topRight  
  31.              controlPoint:topMiddle];  
  32. [path addQuadCurveToPoint:bottomRight  
  33.              controlPoint:rightMiddle];  
  34. [path addQuadCurveToPoint:bottomLeft  
  35.              controlPoint:bottomMiddle];  
  36. [path addQuadCurveToPoint:topLeft  
  37.              controlPoint:leftMiddle];  
  38. //设置阴影路径  
  39.  _imageView1.layer.shadowPath = path.CGPath;  

ok!
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值