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 loaded my pList into a table view controller that segues to a view controller. I can't figure out how to load the data corresponding to the cell tapped into a label on this view controller. The plist is an NSDictionary, by the way.

In viewDidLoad of the table view controller I have:

 NSString *myFile = [[NSBundle mainBundle]
                    pathForResource:@"recipes" ofType:@"plist"];


recipes = [[NSDictionary alloc] initWithContentsOfFile:myFile]; 

courseKeys = [recipes allKeys];

I am not sure how to tell the label that the name of the recipe chosen was X so you display the ingredients for X.

Thanks for the help!

Kevin

share|improve this question

1 Answer

up vote 0 down vote accepted

Don't forget - a UITableView is a way to display your data. Once a user selects a row within a UITableView, you get notified of this via your UITableViewDelegate method (specifically didSelectRowAtIndexPath). You can use the indexPath to grab whatever data you need from whatever data structure you're working with (in your case, NSDictionary) and pass it on to whatever controller you are displaying next by implementing the prepareForSegueue method correctly. I would suggest defining a property in that next UIViewController and assigning it the data to be passed on in prepareForSegueue. I would however pay some though as to wether you wish to pass a direct reference to the data or maybe a deep copy of it - it really depends on what you're trying to accomplish in that VC.

share|improve this answer
Thanks! I created a dictionary of recipes and want the name of the recipes to display in the table view cells, which currently works, and when clicked segues to a detail view of the chosen recipe. – user1856829 Jan 30 at 19:22
How do I pass the corresponding value to the next view controller? I couldnt figure this out - im a beginner by the way. I set up a property to accept the data but not sure what to add in prepareforsegue – user1856829 Jan 30 at 19:57
Within prepareForSegueue you have a reference to the inbound view controller. This would be the place to assign it any data it needs. – Stavash Jan 31 at 7:36

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.