按钮常用

_commitBtn = [[UIButton alloc]initWithFrame:CGRectMake(SCREEN_WIDTH/2-margin-60, 400, 60, 50)];
[_commitBtn setTitle:@"提交" forState:UIControlStateNormal];
[_commitBtn.layer setMasksToBounds:YES];
[_commitBtn.layer setCornerRadius:4];//圆角
_commitBtn.layer.borderColor=[UIColor grayColor].CGColor;//边框色

你可能感兴趣的:(按钮常用)