在我的应用程序中,我想从我的 firstViewController 添加一个启动视图,我在 viewDidLoad 中执行此操作:
AppDelegate *appDelegate = (AppDelegate*)[UIApplication sharedApplication].delegate;
splashImageView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"splash.png"]];
splashImageView.userInteractionEnabled=FALSE;
[appDelegate.window addSubview:splashImageView];
splashImageView.frame=CGRectMake(0,0,1024,768);
它很好地添加了我的启动画面,但我有一个纵向窗口,我正在使用情节提要并从导航控制器开始,有什么方法可以在横向中设置此导航以在横向中有一个窗口?谢谢