在我的应用程序中,我想从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);
它添加了我的飞溅,但我有一个纵向方向窗口,我正在使用故事板,我用导航控制器启动它,在横向设置此导航以在景观中设置窗口的方式是什么?感谢