iOS UIButton(按钮)
UIButton属性 1.UIButton状态: UIControlStateNormal // 正常状态 UIControlStateHighlighted // 高亮状态 UIControlStateDisabled // 禁用状态 UIControlStateSelected // 选中状态 UIControlStateApplication // UIControlStateReserved // 保留状态 2.Uibutton类型: UIButtonTypeCustom //自定义类型 添加图片: 灰色背景颜色: UIButtonTypeSystem // 系统 UIButtonTypeRoundedRect //圆角类型 UIButtonTypeDetailDisclosure //细节展示按钮 UIButtonTypeInfoLight //浅色背景的信息按钮 UIButtonTypeInfoDark //暗色背景的信息按钮 UIButtonTypeContactAdd // 添加按钮 3.UIButton常用属性 给按钮设置文字时,苹果文档说明,不能使用label对象设...