设置圆角、定向设置圆角-按钮等控件

//定向设置圆角

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:whiteView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = whiteView.bounds;
    maskLayer.path = maskPath.CGPath;
    whiteView.layer.mask = maskLayer;

可以定向设置圆角

layer.cornerRadius//圆角

这个属性用在storyboard中可以设置全部圆角设置圆角、定向设置圆角-按钮等控件_第1张图片

你可能感兴趣的:(设置圆角、定向设置圆角-按钮等控件)