iPhone を回転させた時に検知する方法

投稿者: | 01/03/2009

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)FromInterfaceOrientation {
  if(FromInterfaceOrientation == UIInterfaceOrientationPortrait){
  // 横向き
  } else {
  // 縦向き
  }

}

– (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  return YES;
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です