我有两个 xib 文件。我从“ViewController.xib”开始,当用户单击一个按钮时,它会加载一个名为“GamePage.xib”的不同 xib 文件。
按钮的代码是:
-(IBAction)startButtonClicked{
UIViewController *gamePage = [[UIViewController alloc] initWithNibName:@"GamePage" bundle:nil];
[self presentViewController:gamePage animated:NO completion:nil];
}
单击按钮时,屏幕上会显示第二个 xib,但它的“viewDidLoad”方法没有运行……</p>
这是为什么?