ユーザーがいつ向きを変えるかを知る方法が必要です...
私が試してみました
-(BOOL) shouldAutorotate { //never called
UIInterfaceOrientation toInterfaceOrientation = [[UIDevice currentDevice] orientation];
if(toInterfaceOrientation == UIInterfaceOrientationPortrait)
//a code here
return YES;
}
ユーザーがiPadの向きを変更したことをどのように知ることができますか?