It was possible to get this working by making the tab bar selection on my controller from the applicationDidBecomeActivefollowing code:
- (void)applicationDidBecomeActive:(UIApplication *)application {
self.tabBarController.selectedViewController = splashScreenControllerThatHasNoTab;
}
source
share