How to create a screen with multiple subscreens as tabs with a custom navigation bar using AppConKit 3?
In an app I want to have one screen with tab navigation. It's not a top screen. This screen should have a custom navigationBar. How can I do it using AppConKit?
it's generally not supported to have tabbars as NOT firstscreens in a navigation hierachy - especially on iOS this can cause serious issues on pre iOS 6 devices. If you want to show a tabbar as not the first screen in your app, show it modally (just add a true) to the showView. Second, if you have navigation inside your tabs, you will want a separate navigation controller in each tab. So the layout for an app with two tabs you will have is :
Hope this helps
[Edit]: in a modal navigation structure you can close the whole modal screen with the function dismissModal.
mobileController.activeController().dismissModal()