我有2個XIB及其相應的視圖控制器。將它們稱爲MainViewController和AboutViewController。 XIB的名稱與ViewControllers的名稱完全相同。在MainViewController中單擊按鈕後,我想顯示AboutViewController。爲什麼不會加載我的NIB/XIB
我有這樣的代碼在MainViewController:
- (IBAction) infoButtonAction:(id)sender {
AboutViewController *aboutViewController = [[AboutViewController alloc] init];
[[self navigationController] pushViewController:aboutViewController animated:YES];
}
但沒有任何反應,則AboutViewController顯示不出來。我也試過這一行:
AboutViewController *aboutViewController = [[AboutViewController alloc] initWithNibName:@"AboutViewController" bundle:nil];
但無濟於事。我錯過了什麼?
我沒有得到任何錯誤。按鈕連接正確,因爲它停止在點擊功能內的斷點處。 – AngryHacker 2009-09-19 18:31:46