UIbutton 单独设置某一个或两个圆角
作者:
会飞的大西瓜v | 来源:发表于
2017-03-09 09:26 被阅读202次直接上代码
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(100, 100, 100, 50);
[button setTitle:@"点我啊" forState:UIControlStateNormal];
button.backgroundColor = [UIColor redColor];
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:button.bounds byRoundingCorners:UIRectCornerBottomLeft|UIRectCornerBottomRight cornerRadii:CGSizeMake(10.0, 10.0)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = button.bounds;
maskLayer.path = maskPath.CGPath;
button.layer.mask = maskLayer;
[self.view addSubview:button];
本文标题:UIbutton 单独设置某一个或两个圆角
本文链接:https://www.haomeiwen.com/subject/cwqwgttx.html
网友评论