25
Como definir o cornerRadius apenas para o canto superior esquerdo e superior direito de um UIView?
Existe uma maneira de definir cornerRadiusapenas o canto superior esquerdo e superior direito de um UIView? Eu tentei o seguinte, mas ele acabou não vendo mais a 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; …