//UIButton是iOS中用来响应用户点击的控件,既可以显示文字,也可以显示图片,也可以处理用户交互 //UIButton的创建,一般采用类方法来创建,不需要释放 //UIButton 也是UIControl的子类 //1.创建UIButton(一般用类方法) //2.配置UIButton //3.添加到父视图上面 //创建UIButton UIButton *myButton = [UIButton buttonWithType:UIButtonTypeSystem]; //配置UIBut…