I have a project: first view is uitableview, when you select row uinavigationcontroller pushes you to secondviewcontroller – there are some info and at the end there is a small uitableview: 4 rows of competitors. When you select competitor uinavigationcontroller must push you to another view and in that view ,at the end of it, there are another 4 competitors and again you can select one. So if you understood there can be thousands of views when you select competitor.
So the question is what is view hierarchy and how I can implement this?
Here is a link to scheme what it should be like:
http://desmond.imageshack.us/Himg837/scaled.php?server=837&filename=scheme.png&res=medium
Thanks for answers! 🙂
You create a subclass of
UIViewControllerfor your info with small tableView and ondidSelectRowAtIndexPathin that small tableView you create another instance of your subclass and push it toUINavigationController.