I'm using UIPickerView in my app. I used some tutorials to do the settings and to take the selected data from the user, and it's working fine.
What I'm not clear about is how to tell the UIPickerView, when it's initiated with data (using "- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component"), to point at a certain value.
To be more specific:
- I have a UIPickerView that holds an array of NSStrings
- Once the user selects a value I get it and keep it via NSUserDefaults
- When the user gets back to the UIViewController that holds the UIPickerView, I want to get the saved data from NSUserDefaults and have the UIPickerView point to the value that was saved there.
Where should I write the code that sets this data?