端末の画面の向きを変更する
RootViewController.mを編集する
Landscape(横向き)
( UIInterfaceOrientationIsLandscape( interfaceOrientation ) );をreturnする
Portrait(縦向き)
( UIInterfaceOrientationIsPortrait( interfaceOrientation ) );をreturnする
[objc]
#elif GAME_AUTOROTATION == kGameAutorotationUIViewController
//
// EAGLView will be rotated by the UIViewController
//
// Sample: Autorotate only in landscpe mode
//
// return YES for the supported orientations
//横向き
//return ( UIInterfaceOrientationIsLandscape( interfaceOrientation ) );
//縦向き
return ( UIInterfaceOrientationIsPortrait( interfaceOrientation ) );
#else
[/objc]
■参照文献
コピペではじめるiPhoneゲームプログラミング