PickerView - IOS

一、UIPickerView(拾取器)的使用

1、UIPickerView控件生成的表格可以提供滚动的轮盘,

2、这些表格表面上类似于标准的UITableView控件,但是他们使用的dataSource和delegate方法有细微的差别

二、UIPickerView常用方法

1、获取指定列的行数

 - (NSInteger)numberOfRowsInComponent:(NSInteger)component;

2、刷新所有列

 - (void)reloadAllComponents;

3、刷新指定的列

 - (void)reloadComponent:(NSInteger)component;

4、选择一行

 - (void)selectRow:(NSInteger)row inComponent:(NSInteger component
animated:(BOOL)animated;

5、获取指定列当前显示的是第几行

 - (NSInteger)selectedRowInComponent:(NSInteger)component;

三、UIPickerView常用方法

 1、dataSource方法

   1)返回列数

     - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView

   2)返回每一列对应的行数

     - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component

 2、delegate方法

    1)返回显示的文本

     - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component

    2)当某一列选中的行数发生变化时调用

      - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

    3) 设置行高

     - (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component

    4)设置列宽

     - (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component 

    5)自定义cell

     - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view

四、练习

1、使用拾取器做城市选择

   1)在工程自带的ViewController的viewDidload加入

     UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,self.view.frame.size.height-300, 414, 300)];
     pickerView.backgroundColor = [UIColor grayColor];    
     [self.view addSubview:pickerView];


   运行,什么都没有,因为多少段多少行是通过代理方法来设置的


   2)让viewController类遵守 <UIPickerViewDataSource,UIPickerViewDelegate> 两个协议,在viewDidLoad方法里给pickerView挂上代理,并在viewController里实现如下两个代理方法

     //返回列数
     - (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {

        return 2;
     }

     //返回每一列中的行数
     - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {

       return 5;

     }


   运行 选择器里面有两列,每列的数据都是用『?』表示,因为还没有给每列赋值


   3)将课件里面的city.plist文件拖到工程中,在viewDidLoad方法里写入如下代码

      NSString *path = [[NSBundle mainBundle] pathForResource:@"city" ofType:@"plist"];

      //声明一个全局变量dataArray
      dataArray = [[NSArray alloc] initWithContentsOfFile:path];

   4)将代理方法- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component的内容替换成如下内容

          if (component == 0) {
    
            return data.count;
          }

          NSInteger selectedRow =  [pickerView selectedRowInComponent:component];

          NSArray *tempArray = data[selectedRow][@"cities"];

          return tempArray.count;


   运行 目前还是没有数据,但列数和行数已经做了自动设置



   5、给每行设置标题,将如下代理方法写入工程

     //返回每个item中的title
     - (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {

        if (component == 0) {//第一列   
           NSDictionary *dic = data[row];
           NSString *state = dic[@"state"];
           return state;
        }

        //返回第一列选择的行的索引
        NSInteger selectedRow = [pickerView selectedRowInComponent:0];

        //取得省级字典
        NSDictionary *items = data[selectedRow];

        //取得该省下所有的市
        NSArray *cities = [items objectForKey:@"cities"];
        NSString *cityName = cities[row];
        return cityName;

     }

   运行 每行有标题 但左边的省份变化,右边的城市列表没有跟着变化


   6、实现右侧跟着左侧联动

      //当某一列选中的行数发生变化时调用
      - (void)pickerView:(UIPickerView *)pickerView
      didSelectRow:(NSInteger)row inComponent:(NSInteger)component {

        if (component == 0) {
        //刷新指定列中的行
        [pickerView reloadComponent:1];
        //选择指定的item
        [pickerView selectRow:0 inComponent:1 animated:YES];
        }

      }

    运行 右侧可以跟着左侧联动


   7、设置列宽和行高,在工程里添加如下代理方法

      
      - (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component {
        
        if (component == 0) {
         return 100;
        }
        return 220;
      }

      - (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component{

        return 30;
      }


   8、自定义cell,添加代理方法

      - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {

        if (component == 0) {
    
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
        view.backgroundColor = [UIColor greenColor];
        return view;
        }

        UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 220, 40)];
        view2.backgroundColor = [UIColor redColor];

        return view2;
      }

      运行 只剩色块,而里面却没有内容了,因为这个代理方法执行- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component代理方法将不会再执行
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容