ios UIButton部分圆角
巴扎黑
巴扎黑 2017-04-17 17:34:40
0
5
599

我用的是Masonry布局.
我想绘制如箭头所示的部分圆角按钮.请问用代码怎么实现?

在哪个方法里面写?

code:

//部分圆角按钮
    UIButton *loggedBtn = [[UIButton alloc]init];
    loggedBtn.backgroundColor = [UIColor blueColor];
    
    [headView addSubview:loggedBtn];
    [loggedBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.width.offset(40);
        make.height.offset(20);
        make.right.equalTo(headView);
        make.centerY.equalTo(headView);
    }];
巴扎黑
巴扎黑

全部回覆(5)
PHPzhong

雷雷

大家讲道理

直接找一張,部分圓角的圖片不就可以了?

Peter_Zhu

修改button的layer就可以了。改為你想要的圓角,再加上背景顏色。 layer裡面有這些API,你可以看一下。

小葫芦

可以程式設計師改,不過我覺得最簡單的方式是讓美工直接提供就好了。沒必要在這個問題上折騰程式設計師,嘿嘿

小葫芦

我直接把我程式碼給你,你看一下應該就知道怎麼修改我的程式碼實現你要的效果啦

- (void)setupCornerRadius
{
    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.musicChooseView.bounds
                                                   byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight
                                                         cornerRadii:CGSizeMake(12, 12)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = self.musicChooseView.bounds;
    maskLayer.path = maskPath.CGPath;
    self.musicChooseView.layer.mask = maskLayer;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板