Это наблюдение больше всего на свете, потому что я, кажется, нашел обходной путь ...
Приведенный ниже код не работает , когда он находится в контроллере, который был помещен в стек UINavigationController . В этой ситуации [UIDevice currentDevice].orientation
последовательно возвращает UIDeviceOrientationUnknown
.
-(void)layoutAccordingToOrientation {
UIDeviceOrientation orientation = [UIDevice currentDevice].orientation;
NSLog(@"layoutAccordingToOrientation/orientation==%i", orientation);
if (UIInterfaceOrientationIsLandscape(orientation)) {
:
_detailToolbar.frame = CGRectMake(0, 660, 1024, 44);
} else {
:
_detailToolbar.frame = CGRectMake(0, 916, 768, 44);
}
}
-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[self layoutAccordingToOrientation];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
Выполнен следующий вызов :
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
Чтобы обойти эту проблему UIDeviceOrientationUnknown
, я теперь использую следующее:
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIInterfaceOrientationIsLandscape(orientation)) {
etc.
} else {
etc.
}
... который работает каждый раз.
Тем не менее, я не понимаю, почему первый вариант не будет работать в контексте контроллера push-представления. Идеи кого-нибудь? Это просто ошибка?