iOS7设置圆角Button

来源:互联网 发布:百度网盘限速 知乎 编辑:程序博客网 时间:2024/05/29 08:38

UIButton *roundBtn = [UIButton buttonWithType:UIButtonTypeCustom];

roundBtn.frame = CGRectMake(100, 100, 50, 50);

roundBtn.backgroundColor = [UIColor redColor

//设置cornerRadius

_roundBtn.layer.cornerRadius = 10.0;

1 0
原创粉丝点击