I love iPhone, Android, Cocos2d-x
Posts tagged rotate
[iPhone 開発メモ] 本体の回転を検知する
15826日
by matsuura
in iPhone/iPod touch
iPhone を横方向に回転させた時に検知する方法のメモです。
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)FromInterfaceOrientation { if(FromInterfaceOrientation == UIInterfaceOrientationPortrait){ // 横向き } else { // 縦向き } } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; }