私はナビゲーションベースのプロジェクトに取り組んでいます。
A から B に移動するには、次のようにします。
First *firstClass=[[First alloc] initWithNibName:@"first" bundle:nil];
[self.navigationController pushViewController:firstClass animated:YES];
次に、B から C まで、次のようにします。
Second *secondClass=[[Second alloc] initWithNibName:@"Second" bundle:nil];
[self.navigationController pushViewController:secondClass animated:YES];
Now, in C, I do this,trying to get back to A:
- (IBAction)goBack: (id)sender
{
[self.navigationController popToRootViewControllerAnimated:YES];
}
これを行うことで、 A に戻ることができますが、アプリがクラッシュします。
戻った後、A のデバイスの向きを変更します。A の場合、クラッシュしないためです。
初めてロードされました。これについて何か助けはありますか?