每次我點擊一個按鈕改變視圖時,ios模擬器 5.1 (272.21)就會關閉。為什麼?
- (IBAction)SwitchView:(id)sender {
SecondView *second = [[SecondView alloc] initWithNibName:nil bundle:nil];
[self presentViewController:second animated:YES completion:NULL];
}
這是ViewController.m中的按鈕代碼。
沒有報什麼異常?再者,適當的改一下你的代碼。如果不使用nib來初始化控制器,直接alloc init而不是你上面的寫法。
- (IBAction)SwitchView:(id)sender {
SecondView *second = [[SecondView alloc] init];
[self presentViewController:second animated:YES completion:nil];
}
看你的SecondView,我想要問的是,你這上SecondView是直接或間接繼承自UIViewcontroller嗎,因為只有viewcontroller才能被present. 如果你的SecondView不是UIViewcontroller,你執行上面的代碼,不會顯示的話,原因應該就出在這裡了。