Warm tip: This article is reproduced from stackoverflow.com, please click
cocoa-touch iphone objective-c uipickerview

Get selected row in UIPickerView for each component

发布于 2020-04-21 11:05:38

I have an UIPickerView with 3 components populated with 2 NSMutableArrays (2 components have the same array).

A tutorial says:

//PickerViewController.m
- (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component {

NSLog(@"Selected Color: %@. Index of selected color: %i", [arrayColors objectAtIndex:row], row);
}

But I want to show the selected row for each component in an UIAlertView after the user touched an UIButton.

Is there a way to do this? Or must I just use 3 invisible UILabels as buffer?

Thanks in advance.

Questioner
user142019
Viewed
18
163 2016-08-11 01:29

So, in your button action method, you can do something like this:

- (IBAction) showAlert {
  NSUInteger numComponents = [[myPickerView datasource] numberOfComponentsInPickerView:myPickerView];

  NSMutableString * text = [NSMutableString string];
  for(NSUInteger i = 0; i < numComponents; ++i) {
    NSUInteger selectedRow = [myPickerView selectedRowInComponent:i];
    NSString * title = [[myPickerView delegate] pickerView:myPickerView titleForRow:selectedRow forComponent:i];
    [text appendFormat:@"Selected item \"%@\" in component %lu\n", title, i];
  }

  NSLog(@"%@", text);
}

This would be the absolute formal way to retrieve information (by using the proper datasource and delegate methods), but it might be easier (depending on your set up), to just grab the selected row and then pull the information out of your model directly, instead of going through the delegate method.