可能重复:
How should I structure my .plist array and dictionary?
我有UITableView,它有几个子UITableViews,每个子菜单也可能有1个或2个子UITableView。
这种结构的最佳方法是什么?这就是我到目前为止所拥有的。我能够使用
加载带有数据的初始父表视图代码:
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"ICD9Disease" ofType:@"plist"];
NSArray *contentArray = [NSArray arrayWithContentsOfFile:plistPath];
但是我在didSelectRowAtIndex中需要做些什么才能确保下一个tableView从plist中加载正确的数据?