我试图将一个简单的视图推送到我当前的视图上,但它似乎不起作用。
在我的应用程序委托中,我做了:
self.window.backgroundColor = [UIColor whiteColor];
__firstVC = [[FirstPageViewController alloc]initWithNibName:nil bundle:nil];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:__firstVC];
[self.window addSubview:[navController view]];
[self.window makeKeyAndVisible]; Return YES;
然后在我的第一个视图控制器中:
SecondPageViewController *secondView = [[SecondPageViewController alloc] init];
[secondView setTitle:@"What do you want?"];
[self.navigationController pushViewController:secondView animated:YES];
但似乎什么也没发生。我在 secondviewcontroller 的 init 中放了一个 nslog 语句,我可以看到,但没有视图。有人可以帮忙吗?