25
UIView의 왼쪽 상단과 오른쪽 상단에만 cornerRadius를 설정하는 방법은 무엇입니까?
의 cornerRadius왼쪽 상단과 오른쪽 상단에만 설정하는 방법 이 UIView있습니까? 나는 다음을 시도했지만 더 이상보기를 보지 못했습니다. 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 = layer;