UIPickerView 滚动选择器

UIPickerView 滚动选择器,第1张

概述UIPickerView 滚动选择器

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

/////别忘记 .h 中写代理  <UIPickerVIEwDelegate,UIPickerVIEwDataSource>  /////UIPickerVIEw和UIDatePicker是类似的控件,只不过UIDatePicker是日期控件,只能放日期,而UIPickerVIEw可以放任何东西。 - (voID)vIEwDIDLoad{    [super vIEwDIDLoad];    _dataArray = [[NSArray alloc] initWithObjects:@"a",@"b",@"c",@"d",@"e",@"f",nil];         UIPickerVIEw* pv = [[UIPickerVIEw alloc] initWithFrame:CGRectMake(0,460-216,320,216)];    pv.delegate = self;    pv.dataSource = self;    pv.showsSelectionIndicator = YES;    [self.vIEw addSubvIEw:pv];    //[pv release];} //多少组- (NSInteger)numberOfComponentsInPickerVIEw:(UIPickerVIEw *)pickerVIEw{    return 2;} //每一组多少行- (NSInteger)pickerVIEw:(UIPickerVIEw *)pickerVIEw numberOfRowsInComponent:(NSInteger)component{    if (component == 1) {        return 3;    }    if (component == 0) {        return _dataArray.count;    }    return 10;} //显示每一行的文本- (Nsstring *)pickerVIEw:(UIPickerVIEw *)pickerVIEw TitleForRow:(NSInteger)row forComponent:(NSInteger)component{    if (component == 0) {        return [_dataArray objectAtIndex:row];    }    return [Nsstring stringWithFormat:@"%d",row];} - (UIVIEw *)pickerVIEw:(UIPickerVIEw *)pickerVIEw vIEwForRow:(NSInteger)row forComponent:(NSInteger)component reusingVIEw:(UIVIEw *)vIEw{    //如果是第0组    if (component == 0) {        //如果是第0组的第0行        if (row == 0) {            //return 显示的vIEw        }        if (row == 1) {            //        }    }    UIVIEw* myvIEw = [[UIVIEw alloc] initWithFrame:CGRectMake(0,20,20)];    myvIEw.backgroundcolor = [UIcolor redcolor];    return myvIEw;} //选择一行就会调用这个方法- (voID)pickerVIEw:(UIPickerVIEw *)pickerVIEw dIDSelectRow:(NSInteger)row inComponent:(NSInteger)component{    NSLog(@"选择的是第%d组,第%d行",component,row);}

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的UIPickerView 滚动选择器全部内容,希望文章能够帮你解决UIPickerView 滚动选择器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107159.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存