UIPickerView简单选择器的基本使用
//创建一个类,实现UIPickerView的基本功能 #import "PickerViewController.h" // 遵守 UIPickerViewDataSource,UIPickerViewDelegate协议 @interface PickerViewController ()<UIPickerViewDataSource,UIPickerViewDelegate> // 声明一个简单选择器 @property (nonatomic,strong) UIPickerView *picker; // picker第一列数据的数据源数组 @property (nonatomic,strong) NSMutableArray *firstList; // picker第二列数据的数据源数组 @property (nonatomic,strong) NSMutableArray *secondList; // 用于显示简单选择器上选择的内容 @property (nonatomic,strong) UILabel *showLable; // picker选择完点击按钮用于更新lable上的数据 @property (nonatomic,strong) UIButton *button; // picker第一列选择的数据 @property