我正在尝试这个:
- (void)viewDidLoad {
[super viewDidLoad];
if (UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
NSLog(@"PORTRAIT");
} else {
NSLog(@"LANDSCAPE");
}
}
但似乎[[UIDevice currentDevice] orientation]
返回 0,所以我不知道当时设备的方向。我怎么知道呢?