UIPickerView的简单使用

首先初始化几个全局变量方便使用:


    NSArray *showDataListTitle;
    NSArray *showDataListContent;
    NSString *titleStr;
    NSString *contentStr;
    UILabel *showLabel;

倒入代理

<UIPickerViewDataSource,UIPickerViewDelegate>

初始化:

 UIPickerView *pickerView = [[UIPickerView alloc]initWithFrame:CGRectMake(0, 100, 320, 216)];
//    挂上代理
    pickerView.dataSource = self;
    pickerView.delegate = self;
    [self.view addSubview:pickerView];
    //这里两个数组事要显示的数组
    showDataListTitle = [[NSArray alloc]initWithObjects:@"周一",@"周二",@"周三",@"周四",@"周五",@"周六",@"周日",nil];
    showDataListContent = [[NSArray alloc]initWithObjects:@"一",@"二",@"三",@"四",@"五",@"六",@"日",nil];

    showLabel = [[UILabel alloc]initWithFrame:CGRectMake(100, 20, 100, 50)];
    [self.view addSubview:showLabel];
//代理方法
//pickerView的列数
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
    return 2;
}
//pickerView每列的个数
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
    if (component==0) {
        return [showDataListTitle count];
    }
    return [showDataListContent count];
}
//每列的宽度
- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component
{
    if (component == 1) {
        return 40;
    }
    return 180;
}
// 返回选中的行
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
    if (component == 0) {
        titleStr = [showDataListTitle objectAtIndex:row];
    } else {
        contentStr = [showDataListContent objectAtIndex:row];
    }
    //将选中的内容显示在label上
    showLabel.text = [NSString stringWithFormat:@"%@   %@",titleStr,contentStr];
}

//返回当前行的内容,此处是将数组中数值添加到滚动的那个显示栏上
-(NSString*)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
    if (component == 0) {
        return [showDataListTitle objectAtIndex:row];
    } else {
        return [showDataListContent objectAtIndex:row];

    }
}
如果没有上面这个方法界面的显示效果为:
![这里写图片描述](http://img.blog.csdn.net/20160218113016882)

最后的显示效果为:
![这里写图片描述](http://img.blog.csdn.net/20160218113125363)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ldl_csdn_ios

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值