Possible Duplicate:
How should I structure my .plist array and dictionary?
I have UITableView that will have several child UITableViews which may also have 1 or 2 child UITableViews each.
What is the best way to structure this? This is what I have so far. I was able to load the initial parent table view with the data using
Code:
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"ICD9Disease" ofType:@"plist"];
NSArray *contentArray = [NSArray arrayWithContentsOfFile:plistPath];
But what do I have to do in didSelectRowAtIndex to make sure the next tableView loads up the correct data from the plist?