所以我已经通过各种职位添加第二视图添加阴影,但我仍然不能让它的工作,如果我想添加它在 UICollectionViewCell
。我子类化了 UICollectionViewCell
,下面是我的代码,我在单元格的内容视图中添加了各种 UI 元素,并在图层中添加了阴影:
[self.contentView setBackgroundColor:[UIColor whiteColor]];
self.layer.masksToBounds = NO;
self.layer.shadowOffset = CGSizeMake(0, 1);
self.layer.shadowRadius = 1.0;
self.layer.shadowColor = [UIColor blackColor].CGColor;
self.layer.shadowOpacity = 0.5;
[self.layer setShadowPath:[[UIBezierPath bezierPathWithRect:self.bounds] CGPath]];
我想知道如何添加圆角和阴影的 UICollectionViewCell
。