OGeek|极客世界-中国程序员成长平台

标题: iphone - 支持的方向不限制实际方向 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-11 20:38
标题: iphone - 支持的方向不限制实际方向

我有一个 iPad 游戏,我只想在横向 View 中查看。我已经从目标的摘要中选择了横向 View 并拥有代码

- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return YES;
}

在我添加到导航 Controller 的第一个 View Controller 中。但是我可以通过改变目标的方向看到的唯一效果不是它如何旋转,而是它首先加载的方向。有人有什么想法吗?谢谢!



Best Answer-推荐答案


试试这个:

- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

关于iphone - 支持的方向不限制实际方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8332315/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4