In a Navigation-Based app, I want my main menu to display some sort of list - like say a list of all 50 states (in the usual scrollable table-view fashion), whereby when I click on any state's name/cell it would then push-on another table/menu, this time displaying that state's counties. And when I click on any of the counties, it would load/push-on another menu, this time listing all the cities in that particular county, etc. Well should each one of these tables/menus be handled/defined by a separate and distinct UITableViewController? Meaning, do I need to create: 1) "StateViewController" - with its own ".h", ".m" and ".xib" files? 2) "CountyViewController" - with its own ".h", ".m" and ".xib" files? 3) "CityViewContorller" - with its own ".h", ".m" and ".xib" files?
Or is this just really bad inefficient coding that unnecessarily eats-up lots of memory?
Furthermore, should the data-source for populating these different Navigation-Conroller's menus be an NSMutableArray? Cause most tutorials seem to use either NSMutableArray or some info p-list file as the thing that stores the data - and I'm wondering if there other, less memory-hogging options.
Any tips on this would be highly appreciated!