UI:UIPickerView 拾取视图

简介

  • UIPickerView 是一个选择器控件, 它可以生成单列的选择器,也可生成多列的选择器,而且开发者完全可以自定义选择项的外观,因此用法非常灵活。 UIPickerView 直接继承了 UIView ,没有继承 UIControl ,因此,它不能像 UIControl 那样绑定事件处理方法, UIPickerView 的事件处理由其委托对象完成。
  • 苹果官方解释:
    The UIPickerView class implements objects, called picker views, that use a spinning-wheel or slot-machine metaphor to show one or more sets of values. Users select values by rotating the wheels so that the desired row of values aligns with a selection indicator.

初始化

- (instancetype)initWithFrame:(CGRect)frame;

常用属性

  • dataSource:设置数据源
  • delegate:设置代理
  • showsSelectionIndicator:该属性控制是否显示UIPickerView中的选中标记(以高亮背景作为选中标记)。
  • numberOfComponents: 获取UIPickerView指定列中包含的列表项的数量。该属性是一个只读属性。

常用方法

// 1、刷新所有列 - (void)reloadAllComponents; 
// 2、刷新指定列 - (void)reloadComponent:(NSInteger)component;

UIPickerViewDataSource

  • 数据源,UIPickerViewDataSource为一个协议,该协议提供了如下方法配置UIPickerView的列数与行数。
// 1、设置列数 
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;

// 2、设置行数
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component;

UIPickerViewDelegate

  • 代理,同样的,UIPickerViewDelegate也为一个协议,该协议可监听用户交互,选中某行数据,亦可配置UIPickerView的行高及列宽等。
// 1、设置列宽
 - (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component;

// 2、设置行高
- (CGFloat)pickerView:(UIPickerView *)pickerView rowHeightForComponent:(NSInteger)component;

// 3、设置每行显示标题
- (nullable NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;

// 4、自定义行视图
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(nullable UIView *)view;

// 5、选择某行
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component;

效果展示

20160119210749628.gif

代码实现

  • 案例分析:从上面效果当点击北京所在的视图的时候,从屏幕下方弹出了拾取视图,是不是有点熟悉呢?没错,这似乎类似于文本输入框,当文本输入框在响应用户交互的时候,对应的键盘会弹起。那我们就按照这样的思路去实现上述效果。首先,我们需自定义键盘,通过设置文本输入框的inputView属性,将其设值为pickerView即可,那么【确定】按钮又如何实现呢?其实很简单,对应的我们可设置文本输入框的附件视图属性inputAccessoryView,解决了这个问题之后,可能还有疑问,那就是文本输入框的光标如何解决呢?不用担心,我们可设置文本输入框的tintColor属性,设值为透明色clearColor即可。解决了几个主要的问题,那么要实现上述效果就变得简单了,下面我将直接贴上源码,供各位参考,不到之处,还望指点。
#import "ViewController.h" 

#define RGB_COLOR(_R,_G,_B,_A) [UIColor colorWithRed:_R/255.0 green:_G/255.0 blue:_B/255.0 alpha:_A] 

@interface ViewController () <UIPickerViewDelegate, UIPickerViewDataSource>
{
    NSArray *_dataSource; /**< 数据源 */ NSInteger _index;
}

@property (nonatomic, strong) UIPickerView *pickerView;/**< 拾取器 */
@property (nonatomic, strong) UITextField  *textField; /**< 文本输入框 */

- (void)initializeDataSource; /**< 初始化数据源 */
- (void)initializeUserInterface; /**< 初始化用户界面 */

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self initializeDataSource];
    [self initializeUserInterface];
}


#pragma mark *** Initialize methods ***

- (void)initializeDataSource {
    // 初始化数据源
    _dataSource = @[@"北京", @"上海", @"成都", @"上海", @"深圳"];
}

- (void)initializeUserInterface {
    // 文本标签
    UILabel *titleLabel = [[UILabel alloc] init];
    
    titleLabel.bounds = CGRectMake(0, 0, 60, 30);
    titleLabel.center = CGPointMake(80, 200);
    titleLabel.text = @"城市:";
    titleLabel.font = [UIFont boldSystemFontOfSize:25];
    
    [self.view addSubview:titleLabel];
    
    // 加载文本输入框
    [self.view addSubview:self.textField];
    
    // 自定义键盘样式
    self.textField.inputView = self.pickerView;
    
    UIButton *sureButton = [[UIButton alloc] init];
    
    sureButton.bounds = CGRectMake(0, 0, CGRectGetWidth(self.view.bounds), 30);
    sureButton.center = CGPointMake(CGRectGetMidX(self.view.bounds), 25);
    sureButton.backgroundColor = RGB_COLOR(231, 231, 231, 1);
    
    // 设置标题对齐方式请1
    sureButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentRight;
    
    [sureButton setTitle:@"【确 定】" forState:UIControlStateNormal];
    [sureButton setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
    [sureButton setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];
    [sureButton addTarget:self action:@selector(respondsToSureButton:) forControlEvents:UIControlEventTouchUpInside];
    // 自定义键盘附件视图
    _textField.inputAccessoryView = sureButton;
}


#pragma mark *** Events ***

- (void)respondsToSureButton:(UIButton *)sender {
    
    // 收起键盘,失去第一响应
    [_textField resignFirstResponder];
    
    _textField.text = _dataSource[_index];
}


#pragma mark ***  <UIPickerViewDelegate, UIPickerViewDataSource> ***
// 设置列
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView {
    return 1;
}

// 设置行
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
    return _dataSource.count;
}

// 设置标题
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {
    return _dataSource[row];
}

// 点击某行
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {
    _index = row;
}

// 自定义行
/*
 - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
 return nil;
 }
 */


#pragma mark *** Touches ***

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.view endEditing:YES];
}


#pragma mark *** Getters ***

- (UITextField *)textField {
    if (!_textField) {
        // 文本输入框
        _textField = [[UITextField alloc] init];
        _textField.bounds = CGRectMake(0, 0, 220, 30);
        _textField.center = CGPointMake(220, 200);
        _textField.borderStyle = UITextBorderStyleBezel;
        _textField.textAlignment = NSTextAlignmentCenter;
        // 修改光标颜色
        _textField.tintColor = [UIColor clearColor];
        _textField.text = @"北京";
    }
    return _textField;
}

- (UIPickerView *)pickerView {
    if (!_pickerView) {
        _pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 300, 220)];
        _pickerView.backgroundColor = RGB_COLOR(244, 244, 244, 1);
        // 设置代理
        _pickerView.delegate = self;
        // 设置数据源
        _pickerView.dataSource = self;
        _pickerView.showsSelectionIndicator = YES;
    }
    return _pickerView;
}

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

推荐阅读更多精彩内容