2
ちょっとこれは私がUIDeviceの向きが正しい値を返さない
switch ([[UIDevice currentDevice] orientation])
{
case UIInterfaceOrientationPortrait:
[self displayActionSheetInPotraitMode];
break;
case UIInterfaceOrientationLandscapeLeft:
case UIInterfaceOrientationLandscapeRight:
[self displayActionSheetInLandscapeMode];
break;
default:
break;
}
を使用しますがいたコード、私はデバイス上のiOSバージョン4または4.1でそれをしようとすると
スイッチ([[UIDevice currentDevice]方向])
は適切な値を返しません。私のアプリケーションは、IOS 4以降で動作するようになっています。これをどうやって修正するのですか?