cocos2d と cocosbuilder を使用しているときに、ランドスケープの回転に問題があります。
私のcocosbuilderプロジェクトにはiPhoneランドスケープとiPhone5ランドスケープがあり、xcodeサポートされているインターフェイスの向きでは、ランドスケープのみが選択されています。
私のappDelegate.miには次のものがあります:
-(NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
これは本当に簡単なはずですが、ここで苦労していて、cocosbuilder を使わずにゲームを再構築したくありません。