码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发之UIPickerView

时间:2015-08-31 21:29:18      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

1、使用方法

UIPickerView使用和UITableView大致类似。首先设置ViewController为数据源,然后遵守数据源协议< UIPickerViewDataRecouce>,之后实现协议中的方法:

一共有多少列:

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)

pickerView;

 

component列显示多少行:

- (NSInteger)pickerView:(UIPickerView *)pickerView

 numberOfRowsInComponent:(NSInteger)component;

 

上面只能设置UIPickerView有多少行、多少列,不能设置数据,如果要显示数据,必须要设置ViewController为UIPickerView的代理,遵守代理协议<UIPickerViewDelegate>,然后实现代理中的方法:

component列的第row行显示什么文字:

- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:

(NSInteger)row forComponent:(NSInteger)component;

 

component列第row行显示怎样的view(内容)

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:

(NSInteger)row forComponent:(NSInteger)component reusingView:

(UIView *)view;

 

选中了pickerView的第component列第row

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:

(NSInteger)row inComponent:(NSInteger)component

iOS开发之UIPickerView

标签:

原文地址:http://www.cnblogs.com/lifengfneg/p/4773873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!