Hello,
Im planning to construct a simple drill-down application with a book-like structure (MAIN => CHAPTER (1-n) => PART (1-n) -> PAGE (1-n)) accoding to this schema:
As you can see, I want to drill down from MAIN to CHAPTER(i) , and from CHAPTER(i) to PART (j), all by using a navigationBar.
When reaching PART (j), I want to be able to traverse the pages (PAGE (1-n)) in that section by using a tabBar at the bottom of the screen.
Ive gone trough a couple of tutorials but am still trying to wrap my head around some core aspects:
1) I understand I need a NavigationController (by default "RootNavigationController" if chosing a Navigation-based project) for the drill-down from and to MAIN <-> CHAPTER (1-n).
But what about the natigation between CHAPTER (1-n) <-> PART (1-n)? Do I use the same NavigationController here, or do I need to construct a new one for each of the CHAPTERs?
2) Is it possible to use a use a ToolBar for navigation at the bottom of the hierarchy to switch between PAGE (1-n)? The reason I ask is that Ive come across a tutorial saying a NavigationBar may be nested within a TabBar, but not the other way around. This despite the fact that the photo-view application i iPhone does in fact use a TabBar to switch between photos at the lowest level of the hierarchy (ie. it is nested within the NavigationBar).
Thanks in advance,
Daniel
Im planning to construct a simple drill-down application with a book-like structure (MAIN => CHAPTER (1-n) => PART (1-n) -> PAGE (1-n)) accoding to this schema:
As you can see, I want to drill down from MAIN to CHAPTER(i) , and from CHAPTER(i) to PART (j), all by using a navigationBar.
When reaching PART (j), I want to be able to traverse the pages (PAGE (1-n)) in that section by using a tabBar at the bottom of the screen.
Ive gone trough a couple of tutorials but am still trying to wrap my head around some core aspects:
1) I understand I need a NavigationController (by default "RootNavigationController" if chosing a Navigation-based project) for the drill-down from and to MAIN <-> CHAPTER (1-n).
But what about the natigation between CHAPTER (1-n) <-> PART (1-n)? Do I use the same NavigationController here, or do I need to construct a new one for each of the CHAPTERs?
2) Is it possible to use a use a ToolBar for navigation at the bottom of the hierarchy to switch between PAGE (1-n)? The reason I ask is that Ive come across a tutorial saying a NavigationBar may be nested within a TabBar, but not the other way around. This despite the fact that the photo-view application i iPhone does in fact use a TabBar to switch between photos at the lowest level of the hierarchy (ie. it is nested within the NavigationBar).
Thanks in advance,
Daniel