私はTableViewControllerで別のビューをプッシュしているカメラビューを持っています。navbar コントローラーを使用して、メイン ビューから 2 番目のビューをプッシュできます。しかし、テーブル ビューである 2 番目のビューからの戻るボタンは応答しません。理由がわかりません。
前もって感謝します。
@WrightCS すぐにご返信いただきありがとうございます。
私のアプリデリゲートで。
ViewController *vc= [[ViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:vc];
[self.window setRootViewController :navController];
[self.window makeKeyAndVisible];
return YES;
現在、一時的なボタンを使用してビューをプッシュしています。
-(IBAction)testButtonPressed {
TableView *tableVC = [[TableView alloc] initWithStyle:UITableViewStylePlain];
[self.navigationController pushViewController:tableVC animated:YES];
}