ユーザーが左右にスワイプしていくつかの説明ページを表示するツアー画面を作成しています。
ただし、次のビューをプッシュする際に問題が発生しています。handleSwipes メソッドで以下のように UINavigationController を作成しました。
TourViewController2 *tourView2 = [[TourViewController2 alloc] initWithNibName:@"TourViewController2" bundle:nil];
UINavigationController* navigationController = [[UINavigationController alloc] init];
[navigationController pushViewController:tourView2 animated:YES];
何か案は?
ありがとう。