在Cocos2D中强制设备上的肖像

时间:2013-01-06 03:49:38

标签: ios cocos2d-iphone ios-simulator orientation

我按照这篇文章的建议强制将定位设备强制转换为Cocos2d中的Portrait。

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

How do I force portrait mode in Cocos2D?

1 个答案:

答案 0 :(得分:1)

您确定在应用代理中有此代码吗?

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

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

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