Hi,
What is the best way of displaying an information page in an iphone app? Anny ideas will be very helpful. I would prefer to keep all info within iphone app so as not to make it internet connectivity dependant..
Thanks for any help...
mb
Hi,
What is the best way of displaying an information page in an iphone app? Anny ideas will be very helpful. I would prefer to keep all info within iphone app so as not to make it internet connectivity dependant..
Thanks for any help...
mb
Set up a "home" view controller as the root view controller of a navigation controller.
From here, set up a button or tab to trigger pushing an "information" view controller onto the navigation stack.
In the "information" view controller, use a UITableView
to organize sections and table cells that drill down to further details.