Does anyone know a way that I can set my picker to default / startup with row values that are not right at the start of my datasource? If possible I would like the picker to start with a middle value so I don't get the blank white area at the top.
EDIT_001
Added the following lines to viewDidLoad, which seems to be the best place to call these as the UI is being built.
[doublePicker selectRow:2 inComponent:kCoffeeIndex animated:NO];
[doublePicker selectRow:2 inComponent:kCakeIndex animated:NO];
gary