iPhoneの向きを取得する特別な方法はありますか? 度やラジアンは必要ありません。UIInterfaceOrientation オブジェクトを返す必要があります。次のような if-else 構造に必要なだけです
if(currentOrientation==UIInterfaceOrientationPortrait ||currentOrientation==UIInterfaceOrientationPortraitUpsideDown) {
//Code
}
if (currentOrientation==UIInterfaceOrientationLandscapeRight ||currentOrientation==UIInterfaceOrientationLandscapeLeft ) {
//Code
}
前もって感謝します!