我正在创建一个游览屏幕,用户可以在其中左右滑动以显示一些指导页面。
但是,我在加载推送下一个视图时遇到问题。我在 handleSwipes 方法中创建了如下 UINavigationController:
TourViewController2 *tourView2 = [[TourViewController2 alloc] initWithNibName:@"TourViewController2" bundle:nil];
UINavigationController* navigationController = [[UINavigationController alloc] init];
[navigationController pushViewController:tourView2 animated:YES];
有任何想法吗?
谢谢。