Hi all,
I'm working on an iPhone app that (among other things) has a detail view for records with lots of attributes and lots of related records. Rather than having one really long scroll view or table view, I am thinking it might be easiest to break the detail view into several separate views (some UIViews, some UITableViews, etc) that each display one grouping of the record's attributes or related records.
I use a UINavigationController to control view changes in my app, and I could put a UISegmentedController the toolbar
to control which group of the record's attributes or relationships to display. This would look like:
I'm thinking this is the best way to go, but how do I populate the Content Area without pushing and popping from the navigation controller?
Is this even the "right" way to do this? Is this needlessly complex? Or is there some native controller that I should be considering instead?
Thanks!