0

我按照这篇文章的建议将方向设备强制为 Cocos2d 中的人像。

但是,这只会在模拟器中发生变化。在实际的 iPhone 上,程序被迫并保持在横向模式。有什么建议吗?

如何在 Cocos2D 中强制人像模式?

4

1 回答 1

1

你确定你的应用委托中有这个代码吗?

    // Supported orientations: Landscape. Customize it for your own needs
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        return UIInterfaceOrientationIsLandscape(interfaceOrientation);
    }

然后,如果您单击项目图标,在支持的方向下确保仅选择纵向。

如果您有任何问题,请告诉我。

于 2013-01-06T04:01:37.927 回答