25
¿Cómo configurar cornerRadius solo para la esquina superior izquierda y superior derecha de una UIView?
¿Hay alguna manera de establecer cornerRadius solo la esquina superior izquierda y superior derecha de a UIView? Intenté lo siguiente, pero terminó sin ver más la vista. UIView *view = [[UIView alloc] initWithFrame:frame]; CALayer *layer = [CALayer layer]; UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:frame byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(3.0, 3.0)]; layer.shadowPath = shadowPath.CGPath; view.layer.mask …