我不确定这是一个错误还是我可能做错了什么,但是当我以纵向模式启动我的应用程序而不旋转设备并运行此代码时
if(UIInterfaceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
NSLog(@"Portrait");
} else {
NSLog(@"Landscape");
}
我返回Landscape
,在我旋转设备并再次检查后它返回正确的值,所以当你第一次启动返回的方向时似乎是错误的。这是一个已知的问题?
编辑:
即使我在 AppDelegate 中运行此代码,它也会返回Landscape
,即使我在纵向模式下启动
if(UIInterfaceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
NSLog(@"Portrait");
} else {
NSLog(@"Landscape");
}