我有一個cameraview,我正在用TableViewController推送另一個視圖。我可以使用導航欄控制器從主視圖中推入第二個視圖。但是從第二個視圖(即表格視圖)返回的按鈕沒有響應。我無法弄清楚爲什麼。UINavigation bar後退按鈕沒有響應
在此先感謝。
@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];
}
將您用於視圖的代碼,您如何創建第二個視圖等。 – WrightsCS
@WrightsCS感謝您的即時響應。 – ilaunchpad
您的代碼中沒有任何內容表示後退按鈕不響應的原因。 – WrightsCS