我刚刚构建了一个小应用程序来测试以编程方式更改视图的使用,所以我在故事板和我的两个类中有我的两个视图。现在我希望当我点击 ViewController 中的按钮时,它会显示 RedViewController。但是当我点击这个按钮时,我只能黑屏。有谁知道如何解决这个问题?
-(IBAction)showred:(id)sender{
RedViewController *viewController = [[RedViewController alloc] init];
[self presentViewController:viewController animated:YES completion:nil];
}
谢谢迈克尔