Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to display nutritional information in a table view but am struggling about the best way to show the info. I don't want to create unique views for each page as that would take up a lot of space. My ideal avenue would be like a website having links to data pages instead of individual views for each page. How would I best implement that?

For example, I would want the first page to be a list of restaurants, then as you press the restaurant it would list the different types of food...the next page would be a list of those foods and then the final page would be the nutrition info itself.

Thanks

share|improve this question

1 Answer

You are speaking about an iPhone application? Check out the UINavigationController. A view usually renders a specific piece of data, so your final view (nutrition info) gets the food item you click on in the view before and renders its info. You can then go back, select another food item and the same view shows the info about that item. You have to implement that behaviour of course.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.