2

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?

Community
  • 1
  • 1
adhikari
  • 79
  • 3
  • @jtbandes: The duplicate has exact same title. Great find. – Praveen S Aug 10 '11 at 07:11
  • wow thank you so much for your useful information.. – adhikari Aug 10 '11 at 07:11
  • @Praveen S: helps that I wrote an answer to the other one earlier today ;) – jtbandes Aug 10 '11 at 07:13
  • 2
    @Dylan: I'm pretty sure this is the same person who posted the other question (especially since the filename used is the same); I've flagged this post so the mods will probably take care of it shortly :) – jtbandes Aug 10 '11 at 07:16
  • thanks Dyan reich . i m new here so i not see the above question be possible duplicate – adhikari Aug 10 '11 at 07:17
  • i just see that post , but not getting the answer as i need so i agin post sry i m new here so just trying to learn how to use stack overflow @dylan – adhikari Aug 10 '11 at 07:21
  • 1
    @user887347 did you also ask the other question? If so, why are you making duplicate accounts? – Tim Post Aug 10 '11 at 07:26
  • @Tim Post: Looks like its the same user, jtbandes has also observed the same file name being used in the question. – Praveen S Aug 10 '11 at 07:27

0 Answers0