In my iPhone app I have a UIPickerView with 2 columns.
When the user has clicked on the right column and selected an item, they then click a button. After this I want the left hand columns of the UIPickerView to be selected again.
I can select any row in a column (component) by using
[myPickerView selectRow:myRow inComponent:myComponent animated:YES];
Is there any way I can select the column itself ?
Thanks