Вы вызываете selectRow:inComponent:animated:
и передаете ему индекс нужной строки.
Этот код заставляет UIPickerView
прокручивать цифры от 0 до 60, прежде чем остановиться на 0.
- (void)viewDidAppear:(BOOL)animated {
[thePicker selectRow:60 inComponent:0 animated:YES];
[thePicker reloadComponent:0];
[thePicker selectRow:60 inComponent:1 animated:YES];
[thePicker reloadComponent:1];
[thePicker selectRow:0 inComponent:0 animated:YES];
[thePicker reloadComponent:0];
[thePicker selectRow:0 inComponent:1 animated:YES];
[thePicker reloadComponent:1];
}
В вашем случае, чтобы отобразить десятую строку, вы бы назвали что-то вроде:
[thePicker selectRow:10 inComponent:0 animated:YES];