本サイトのコンテンツには、商品プロモーションが含まれている場合があります。

cocos2d iPhone iPhoneアプリ制作

[:ja]【cocos2d】画面の向きを変更する[:en]【cocos2d】change screen orientation of deviece[:]

スポンサーリンク

端末の画面の向きを変更する
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ゲームプログラミング

-cocos2d, iPhone, iPhoneアプリ制作
-,