我按照这篇文章的建议强制将定位设备强制转换为Cocos2d中的Portrait。
但是,这只会在模拟器中发生变化。在实际的iPhone上,程序被强制并保持在横向模式。有什么建议吗?
答案 0 :(得分:1)
您确定在应用代理中有此代码吗?
// Supported orientations: Landscape. Customize it for your own needs
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
然后,如果单击项目图标,则在“支持的方向”下,确保仅选择“纵向”。
如果您有任何问题,请告诉我。