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;