iphone app information page [closed]
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post开发者_如何转开发.
Closed 9 years ago.
Improve this questionWhat 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..
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.
精彩评论