我有一个 iPad 游戏,我只想在横向 View 中查看。我已经从目标的摘要中选择了横向 View 并拥有代码
- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}
在我添加到导航 Controller 的第一个 View Controller 中。但是我可以通过改变目标的方向看到的唯一效果不是它如何旋转,而是它首先加载的方向。有人有什么想法吗?谢谢!
Best Answer-推荐答案 strong>
试试这个:
- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
关于iphone - 支持的方向不限制实际方向,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8332315/
|