stroyboardでステートメントを使用すると、現在、本当に有線の問題が見つかります
SomeViewController *homeView = [self.storyboard instantiateViewControllerWithIdentifier:@"someID"];
[self.navigationController pushViewController:homeView animated:YES completion:NULL];
そして私が使用するとき
[self.navigationController popViewControllerAnimated:YES];
プッシュしたViewControllerで、メモリがdeallocを取得しませんでした(ARCを使用しています)
しかし、私が使用する場合
[self performSegueWithIdentifier:@"pushToHomeView" sender:self];
homeViewのメモリからポップすると、解放されます。
プログラムでビューをプッシュすると、なぜこの問題が発生するのか、本当に知りたいです。