我有下面的代码从一个 UIViewController 转换到一个带有 Storyboard 的 UIViewController。
#import "How_FarViewController.h"
MainViewController *screen = [[MainViewController alloc] initWithNibName:nil bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:screen animated:YES];
但是当我按下它时,它会做一个翻转动画并且只显示黑色。我的问题是什么??
谢谢, SebOH