I tried the exact same thing and it works perfectly. Here's some relevant code:
This code is only relevant if you select the row manually:
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
if (component == 0) {
[pickerView reloadComponent:1];
}
}
I added a button that executes your code when it's tapped.
- (void)buttonAction:(id)sender {
[pickerView selectRow:3 inComponent:0 animated:NO];
[pickerView reloadComponent:1];
[pickerView selectRow:1 inComponent:1 animated:NO];
}
Here's the last relevant piece of code that I have:
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
switch (component) {
case 0:
return 5;
break;
case 1:
return [pickerView selectedRowInComponent:0];
break;
default:
break;
}
return 5;
}
Everything works as expected, so the lines you posted aren't the ones causing the problem. If you can't figure it out after having read my code (that is tested and working) I suggest you post some more code.