Если я позвоню на [[UIDevice currentDevice] orientation].Это даст мне ориентацию, а не положение.Так кто-нибудь может дать мне предложение?
[[UIDevice currentDevice] orientation]
UIInterfaceOrientation *orientation = [[UIApplication sharedApplication] statusBarOrientation]; if (UIInterfaceOrientationIsPortrait(orientation)) { } else if (UIInterfaceOrientationIsLandscape(orientation)) { }