Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

You would write it on ViewWillAppear: (because this is when you want to set the data).

There you can read the value from you model (Core Data, NSUSerDefaults, Plist etc..) and set it using:

- (void)selectRow:(NSInteger)row inComponent:(NSInteger)component animated:(BOOL)animated

This is a method of the UIPickerView.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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