我想在 AwakeFromNib 方法中检查 iphone 的方向。这是我的代码:
- (void)awakeFromNib
{
orientation = [[UIApplication sharedApplication]statusBarOrientation];
if (orientation == UIInterfaceOrientationPortrait)
{
NSLog(@"orientation portrait");
}
else if (orientation == (UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationLandscapeRight))
{
NSLog(@"Orientation landscape");
}
}
当我转动我的 iPhone 时,日志没有收到消息,这是什么问题?