ios – 如何为UICollectionViewCell创建阴影

前端之家收集整理的这篇文章主要介绍了ios – 如何为UICollectionViewCell创建阴影前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要为UICollectionView中的单元格创建一个阴影.我已将子单元子类化,并在layoutSubviews中添加了以下代码
-(void)layoutSubviews{

    [super layoutSubviews];

    self.layer.masksToBounds = NO;
    self.layer.shadowOpacity = 0.75f;
    self.layer.shadowRadius = 5.0f;
    self.layer.shadowOffset = CGSizeZero;
    self.layer.shadowColor = [UIColor blackColor].CGColor;
    self.layer.shadowPath = [UIBezierPath bezierPathWithRect:self.bounds].CGPath;


}

但是细胞越来越高,这就是结果:

如果我删除

self.layer.masksToBounds = NO;

单元格正确显示(它们之间的距离为10px),但阴影不可见.我究竟做错了什么?另外,在layoutSubviews方法添加阴影是否正确?

解决方法

您需要启用在边界之外创建阴影;
[cell.layer setMasksToBounds:NO];
原文链接:https://www.f2er.com/iOS/332098.html

猜你在找的iOS相关文章