Así que ya revisé varias publicaciones sobre cómo agregar una segunda vista para agregar sombras, pero todavía no puedo hacer que funcione si quiero agregarlas UICollectionViewCell
. Subclasé UICollectionViewCell
, y aquí está mi código donde agrego varios elementos de la interfaz de usuario a la vista de contenido de la celda y agrego sombra a la capa:
[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]];
Me gustaría saber cómo agregar esquinas redondeadas y sombras UICollectionViewCell
.