AwakeFromNib メソッドで iphone の向きを確認したい。これは私のコードです:
- (void)awakeFromNib
{
orientation = [[UIApplication sharedApplication]statusBarOrientation];
if (orientation == UIInterfaceOrientationPortrait)
{
NSLog(@"orientation portrait");
}
else if (orientation == (UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationLandscapeRight))
{
NSLog(@"Orientation landscape");
}
}
iPhone を回転させているときにログにメッセージが表示されません。何が問題なのですか?