1 //數據源(用來告訴UIPickerView有多少列多少行)2 @property(nonatomic,assign) id dataSource;
3 //代理(用來告訴UIPickerView每一列的每一行顯示什么內容,監(jiān)聽UIPickerView的選擇)4 @property(nonatomic,assign) id delegate;
5 //是否要顯示選中的指示器6 @property(nonatomic) BOOL showsSelectionIndicator;
7 //一共有多少列8 @property(nonatomic,readonly) NSInteger numberOfComponents;
2.UIPickerView的常見方法
成都創(chuàng)新互聯(lián)是專業(yè)的遼陽網站建設公司,遼陽接單;提供成都做網站、成都網站設計、成都外貿網站建設,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行遼陽網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!1 //重新刷新所有列2 -(void)reloadAllComponents;
3 //重新刷新第component列4 -(void)reloadComponent:(NSInteger)component;
5 //主動選中第component列的第row行6 -(void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL) animated;
7 //獲取第component列的當前選中的行號8 -(NSInteger)selectedRowIncomponent:(NSInteger) component;
3.數據源方法(UIPickerViewDataSource)
// 一共有多少列- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;
// 第component列一共有多少行- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component;
4.代理方法(UIPickerViewDelegate)
1 // 第component列的寬度是多少 2 - (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component;
3 // 第component列的行高是多少 4 - (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component;
5
6 // 第component列第row行顯示什么文字 7 - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;
8
9 // 第component列第row行顯示怎樣的view(內容)10 - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view;
11
12 // 選中了pickerView的第component列第row行13 - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component;
UIDatePicker
1.常見屬性
1 // datePicker的顯示模式2 @property (nonatomic) UIDatePickerMode datePickerMode;
3 // 顯示的區(qū)域語言4 @property (nonatomic, retain) NSLocale *locale;
2.監(jiān)聽UIDatePicker的選擇
因為UIDatePicker繼承自UIControl,所以通過addTarget:..監(jiān)聽