我想从子视图中使用presentModalViewController
方法,但是它对我不起作用
这是我的代码:
子视图:
-(IBAction) PressMoyensEs {
MoyensEstimatifsViewController *MoyE = [[MoyensEstimatifsViewController alloc] initWithNibName:@"MoyensEstimatifsViewController" bundle:nil];
[self.parentViewController presentModalViewController:MoyE animated:YES];
}
最佳答案
您检查了self.parentViewController
吗?在许多情况下,它很可能是nil
,因此您的代码无声地失败了。
而且,您是否尝试过[self presentModalViewController:MoyE animated:YES];
?它的“正确性”较差,但如果可行,就已经可以排除某些故障原因。