我在根视图控制器中。然后分配第二个viewcontroller
SecondViewControl *second=[[SecondViewControl alloc] init];
[self presentModalViewController:second animated:NO];
第二个 viewcontroller 的视图没有出现
AddSubView 方法虽然有效。[self.view addSubView:second.view];
为什么 presetModalViewController 不起作用?