美文网首页
UIbutton 单独设置某一个或两个圆角

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