Get selected row in UIPickerView for each component

user142019 picture user142019 · Sep 7, 2009 · Viewed 56.9k times · Source

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.

Answer

Dave DeLong picture Dave DeLong · Sep 7, 2009

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.