vote up 1 vote down star

I have an iphone database app that loads a UIPickerView with data from a table. I want to set the selected row to a particular row from the data in another table.

for example: Lets say I have a UIPickerView that is loaded with X number of names of the iPhone users friends (the number of names is variable, could be 1 or 1000 and all are entered into the DB by the user). The iPhone user has a preference set that their current best friend is TED. I want the UIPickerView to be position to TED when displayed.

Where do I call selectRow?

I tried in viewDidAppear but it was never called, in titleForRow which caused all kinds of strange behavior. viewDidLoad and viewWillAppear are out of the question because I don't know what's in the datasource to the picker yet.

Thanks in advance.

flag

2 Answers

vote up 0 vote down

Place this wherever you initialize the UIView that contains your UIPickerView as a subview:

[myPickerView selectRow:rowWithTedsName inComponent:columnWithNames animated:NO];
link|flag
vote up 0 vote down

Call it after you retrieve the data. I don't know where you load the data so this is just a mockup of what should work. If this doesn't make sense, let me know where you are loading data so I can piece it together in my head :)

-(void)viewDidLoad
{
    // load data from sql
    // self.someDataArray = DATAFROMSQL
    [picker reloadAllComponents];
    [picker selectRow:0 inComponent:0 animated:YES];
}
link|flag
Thanks, I am retriveing the data in the viewDidLoad just like your mockup. I had to create a method to enumerate through the list to find the matches index then set the picker. I thought maybe I was missing a callback that could used after the picker was loaded and before returning to the event loop. – Steve Gibson May 2 at 14:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.