如何获取UIPickerView中选中的cell的值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取UIPickerView中选中的cell的值相关的知识,希望对你有一定的参考价值。
参考技术A 这个pickerView是在pickerViewController这个UIViewController中。//获取选中的列中的所在的行
NSInteger row=[_pickerViewController.pickerView selectedRowInComponent:0];
//然后是获取这个行中的值,就是数组中的值
NSString *value=[_pickerViewController.array objectAtIndex:row]; 参考技术B 解决方案:
这个pickerView是在pickerViewController这个UIViewController中。
//获取选中的列中的所在的行
NSInteger row=[_pickerViewController.pickerView selectedRowInComponent:0];
//然后是获取这个行中的值,就订迹斥克俪久筹勋船魔是数组中的值
NSString *value=[_pickerViewController.array objectAtIndex:row]; 参考技术C 这个pickerView是在pickerViewController这个UIViewController中。
//获取选中的列中的所在的行
NSInteger row=[_pickerViewController.pickerView selectedRowInComponent:0];
//然后是获取这个行中的值,就是数组中的值
NSString *value=[_pickerViewController.array objectAtIndex:row];本回答被提问者和网友采纳
如何获取自定义 UIPickerView?
【中文标题】如何获取自定义 UIPickerView?【英文标题】:How to get Custom UIPickerView? 【发布时间】:2014-08-06 09:40:42 【问题描述】:我想在Custom UIPiker中实现如下功能,如下图所示。
我只想像上面那样更改选定区域的文本颜色。
【问题讨论】:
将此添加到问题中,不在评论中 您必须为不同的选择使用不同的标签。检查一下。 【参考方案1】:在您的viewDidLoad
方法中的pickerview 中添加标签,如下所示。
在ViewController.h
文件中定义label
和myPickerView
- (void)viewDidLoad
myPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 200, 320, 200)];
myPickerView.delegate = self;
myPickerView.showsSelectionIndicator = YES;
[self.view addSubview:myPickerView];
label = [[UILabel alloc] initWithFrame:CGRectMake(145, 76, 36, 36)];
//label.text = @"Label";
label.font = [UIFont boldSystemFontOfSize:20];
label.layer.cornerRadius = 18;
[label setTextColor:[UIColor whiteColor]];
label.backgroundColor = [UIColor blueColor];
label.textAlignment = NSTextAlignmentCenter;
label.shadowColor = [UIColor whiteColor];
label.shadowOffset = CGSizeMake (0,1);
[myPickerView addSubview:label];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
在pickerview委托中设置标签标题。
#pragma mark - PickerView delegate
- (void)pickerView:(UIPickerView *)pickerView didSelectRow: (NSInteger)row inComponent:(NSInteger)component
// Handle the selection
[label setText:[NSString stringWithFormat:@"%d",row]];
NSLog(@"%@",[NSString stringWithFormat:@"%d",row]);
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
NSLog(@"%@",[NSString stringWithFormat:@"%d",row]);
[label setText:[NSString stringWithFormat:@"%d",row]];
return [NSString stringWithFormat:@"%d",row];
你的输出是:
【讨论】:
感谢它的工作原理.....只有 1 件事无法绕过标签背景的角落,虽然使用:label.layer.cornerRadius = 18; 您的标签宽度和高度相同,角半径是宽度的一半。那么你的标签是四舍五入的。 奇怪的行为当你向上拖动它时它会变为 4 并变回 0,即使 4 位于选择的底部以上是关于如何获取UIPickerView中选中的cell的值的主要内容,如果未能解决你的问题,请参考以下文章