我有一款iPad游戏,我只想在横向视图中看到。我从目标摘要中选择了横向视图,并获得了代码
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
在我的第一个viewcontroller中添加到navController中。但是,通过改变目标的方向,我能看到的唯一效果不是它如何被旋转,而是它首先加载的方向。有人有任何想法吗?谢谢!
答案 0 :(得分:2)
试试这个:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}