button 设置圆角、View设置圆角

有些常用的属性有时候会突然忘了,忘一次写一次

UIButton *roundBtn = [UIButton buttonWithType:UIButtonTypeCustom];

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

roundBtn.backgroundColor = [UIColor redColor

//设置cornerRadius

_roundBtn.layer.cornerRadius = 10.0

View设置圆角原理一样

View.layer.cornerRadius = 10.0;

你可能感兴趣的:(UIView,UIButton,Button设置圆角,UIView设置圆角)