ビュー コントローラーからモーダル ビュー コントローラーを起動しています。親View Controllerが黒くなることを除いて、モーダルView Controllerのすべてが正常に表示されます。モーダル ビュー コントローラーが閉じられると、親が描画されます。誰かが私が間違っているところを指摘できますか? 私が使用しているコードは次のとおりです。
modalVC.modalPresentationStyle = UIModalPresentationFormSheet;
self.navigationController = [[UINavigationController alloc] initWithRootViewController: modalVC];
[currentViewController presentModalViewController: self.navigationController animated: YES];
self.navigationController.view.frame = CGRectMake(200, 200, 320, 540);