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
