button的初始化有两种
一种是动态创建
UIButton *button1 = [UIButton alloc]initWithFrame:CGRectMake(0, 0, 80, 50)];
接下来设置button属性
另一种是静态创建
UIButton *button2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
设置button2的frame
转载于:https://www.cnblogs.com/zander/archive/2012/08/21/2649362.html