In order to hide the Tabbar when the navController is invoked, I tried this here in objc:
-(void)navBarHidePushed {
UINavigationController* controller = [[NKBridge sharedInstance] navigationControllerForPage:@"main.html"] ;
controller.hidesBottomBarWhenPushed = YES;
}
This has no effect though. What am I missing?
Thanks in advance,
Bernhard