我正在从视图控制器启动模态视图控制器。模态视图控制器中的所有内容都显示正常,除了父视图控制器变黑。当模态视图控制器被解除时,父级被绘制。谁能指出我哪里出错了?这是我正在使用的代码:
modalVC.modalPresentationStyle = UIModalPresentationFormSheet;
self.navigationController = [[UINavigationController alloc] initWithRootViewController: modalVC];
[currentViewController presentModalViewController: self.navigationController animated: YES];
self.navigationController.view.frame = CGRectMake(200, 200, 320, 540);