最近项目涉及到对tableView设置阴影效果,实现技术上不难,主要是思路。这里记录下来,也方便大家学习。
阴影是对layer层的操作。CALayer是屏幕上的一个矩形区域,在每一个UIView中都包含一个根CALayer,在UIView上的所有视觉效果都是在这个Layer上进行的。
通常我们可以对CALayer进行一下操作
1、层的大小尺寸
2、背景色
3、内容(可以填充图片或者使用Core Graphics绘制的内容)
4、矩形是否使用圆角
5、矩形是否有阴影
对shadow最简单的使用时通过layer直接设置shadow属性,这样设置的shadow会对整个view设置一个阴影效果。代码如下:
self.coverView.layer.shadowOffset=CGSizeMake(0,0);//往x方向偏移0,y方向偏移0
self.coverView.layer.shadowOpacity=0.3;//设置阴影透明度
self.coverView.layer.shadowColor= [UIColorblackColor].CGColor;//设置阴影颜色
self.coverView.layer.shadowRadius=5;//设置阴影半径
然而,如果我们想自定义一些特殊的阴影区域怎么办呢,别慌。这个时候我们就需要使用到shadowPath这个属性。可以事先定义一个UIBezierPath的路径。然后对路径设置阴影效果。
CGFloatborder =5;
UIBezierPath*path= [UIBezierPathbezierPath];
[pathmoveToPoint:CGPointMake(border, cell.height)];
[pathaddArcWithCenter:CGPointMake(border, cell.height- border) radius:border startAngle:M_PI_4 endAngle:M_PI_2 clockwise:YES];
[pathaddLineToPoint:CGPointMake(cell.width, border)];
[pathaddLineToPoint:CGPointMake(cell.width, cell.height- border)];
[pathaddArcWithCenter:CGPointMake(cell.width- border, cell.height- border) radius:border startAngle:0endAngle:M_PI_4 clockwise:YES];
[pathaddLineToPoint:CGPointMake(cell.width- border, cell.height)];
[pathaddLineToPoint:CGPointMake(border, cell.height)];
cell.layer.shadowPath= path.CGPath;
cell.layer.shadowColor=kBGGaryColor.CGColor;//shadowColor阴影颜色
cell.layer.shadowOffset=CGSizeMake(0.6,0.6);//shadowOffset阴影偏移,x向右偏移4,y向下偏移4,默认(0, -3),这个跟shadowRadius配合使用
cell.layer.shadowOpacity=0.8;//阴影透明度,默认0
cell.layer.shadowRadius=1;//阴影半径,默认3
cell.layer.masksToBounds=NO;
cell.contentView.layer.cornerRadius=10.0f;
cell.contentView.layer.borderWidth=0.5f;
cell.contentView.layer.borderColor= [UIColorclearColor].CGColor;
cell.contentView.layer.masksToBounds=YES;
cell.contentView.clipsToBounds=YES;
下面我们要回到正题,如何对tableView设置阴影效果。
先说如何对cell添加一个阴影效果
cell.layer.shadowOffset=CGSizeMake(0, 1);
cell.layer.shadowColor= [UIColorgrayColor].CGColor;
cell.layer.shadowRadius= 1;
cell.layer.shadowOpacity= .5f;
CGRectshadowFrame = cell.layer.bounds;
CGPathRefshadowPath = [UIBezierPathbezierPathWithRect:shadowFrame].CGPath; cell.layer.shadowPath= shadowPath;
注意:不要给section footer 或 section header设置背景色,否则无效果。
当然,如果你一定要进行特别的操作,那就可以在cell中添加一圈小一层的view,然后对这个view进行shadow的设置。
接下来讲讲如何对一个tableview设置shadow效果
或许你做过这样的操作,对一个tableview(scrollView)进行shadow的设置,but 为什么没显示!bingo,因为shadow默认设置clipsToBounds=YES,而shadow需要开启clipsToBounds = NO。
所以最直接的操作
tableView.layer.shadowColor = UIColor(white: 000000, alpha: 0.3).CGColor
tableView.layer.shadowOffset = CGSize(width: -6, height: 6)
tableView.layer.shadowOpacity = 1
tableView.clipsToBounds = false //这句最重要了,不然就显示不出来
这个时候有人可能就会碰到tableView显示的问题了,如果clipsToBounds=NO,那么scrollView超出部分就会显示出来。如果你的scrollView没有覆盖整个屏幕,我想这个不会是你想要的效果!那么怎么办呢!
没错,我也么办法解决 哈哈哈哈哈哈。
所以我采用另外的一个方法迂回了。历史教育会我们,农村包围城市是是否有必要的,虽然方法low了点,但实用不是。
代码很简单,主要是思路:
创建一个coverView,覆盖在tableview的下面,对coverView进行shadow的设置,当然别忘了设置coverViewcover的背景色,花花绿绿都可以,别透明就行。
PS:有些人可能会另外实现淘宝商品的效果。这个就涉及到scrollView的联动效果。大家可以自己试试。