私は iOS 6 で作業しています。私のアプリケーションには、CustomViewController が埋め込まれた標準のナビゲーション コントローラーがあります。このコントローラーでは、次のようなモーダル ビューを作成します。
-(IBAction)presentModalList:(id)sender {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
StationsListViewController *list = [storyboard instantiateViewControllerWithIdentifier:@"StationsListViewController"];
[list setStationsData: [self.stationsData allValues]];
[self presentModalViewController:list animated:YES];
}
モーダル コントローラーは完全に表示されますが、閉じると警告が生成されます。このコントローラーの却下メソッドは次のとおりです。
-(IBAction)backToMap
{
[self dismissModalViewControllerAnimated:YES];
}
生成される警告は警告です:
プレゼンテーションまたは却下の進行中に、View Controller < UINavigationController: 0x1ed91620 > から却下しようとしています!
それについての手がかりはありますか?
ありがとう