当应用程序从后台返回时,我想从导航控制器推送我的菜单视图控制器。
测试—— NSString 返回我的导航控制器的标题,所以它应该可以工作,但它没有。它总是显示视图控制器。
PS我使用故事板。
在AppDelegate.m
:
- (void)applicationWillEnterForeground:(UIApplication *)application
{
NSString * test = self.window.rootViewController.title; // return title of navigation controller
MenuViewController *mvc = [[MenuViewController alloc] init];
[(UINavigationController *)self.window.rootViewController pushViewController:mvc animated:NO];
}