hi, i have an application which uses CoreData/.sqlite to store my data, a tab bar and table views
The data has relationship and data already setup. I have the first table view in Tab 1 working, display the data correctly from the fetched results. But I am stuck on the drill down view. Would be great if someone could enlighten me.
Do I setup another fetched results controller in the 2nd view controller? Or ?
Application Structure
Tab 1
1st view > Plain Table View Cell > Data from FetchedResultsController
2nd view > Table view with Custom Table View Cell (customviewcell.h/.m) (Drill down data from previous view selected item)
3rd view > DetailView
Tab 2
Structure same as above, only source are from the internet.
Thank you~
ok, my data model is like this
# Districts (plain table list)
## List of school in the selected district (with other info and UIimage /custom table cell)
### Details of the school with 2-3 sectioned table with info.
I can get the plain district list to display correctly, but I can;t implement the school table view list right. Would be great if you could provide me with some brief code example.
Million thanks~