我需要知道我的 winow.rootviewcontroller 名称。
例如
UITabBarController *demoTabBarController = [[UITabBarController alloc] init];
[self.demoTabBarController setDelegate:self];
self.demoTabBarController.viewControllers = [NSArray arrayWithObjects:mainNavController, searchView, challengeView, nil];
self.window.rootViewController = self.demoTabBarController;
所以在 NSLog 我想要 demoTabBarController 作为结果。有什么办法可以实现吗?
请注意,我不想要 rootviewcontroller 的类名。