I have iOS application with UITabBarController
that contains UINaviagtionController
for each Tab, like on the picture below.
I also want to port my application to WindowsPhone
(>=7.5).
My question is: Which UI components/services can I use to create the navigation flow like in my iOS app?
Update
About
UITabController
you can think like about tabs in windowsThe hierarchy of controllers that painted on the picture above mean that each tab in
UITabController
will have ownUINavigationController
(in the WP terms this isNavigationService
). So if you will use the navigation on one tab this will not affect to navigation on other tabs.
But as far as I know by default WP application have only one instance of NavigationService
.
So actually my question is relevant to a question: Can WP application use more than one NavigationService
?