首页 > 代码库 > UIButton的使用

UIButton的使用

一、使用概要

当添加一个按钮到你的界面,执行以下步骤:

1、在创建时设置按钮的类型。

2、提供一个标题字符串或图像,为您的内容适当调整按钮的大小。

3、连接一个或多个操作按钮的方法。

4、设置自动布局规则界面中的按钮的大小和位置。

5、提供可访问性信息和本地化字符串。

二、具体使用

1、使用类方法创建一个按钮对象

UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];

注意:能够定义的button类型有以下6种

typedef NS_ENUM(NSInteger, UIButtonType) {
    UIButtonTypeCustom = 0, 自定义风格
    UIButtonTypeSystem,标准的系统按钮
    UIButtonTypeDetailDisclosure,蓝色小箭头按钮,主要做详细说明用
    UIButtonTypeInfoLight,亮色的感叹号
    UIButtonTypeInfoDark,暗色的感叹号
    UIButtonTypeContactAdd,十字加号按钮
    UIButtonTypeRoundedRect = UIButtonTypeSystem,圆角矩形按钮
};

UIButton的使用