У меня есть iPad TabBarApplication.я вложил в субкласс TabbarController, чтобы приложение реагировало на изменение ориентации:
@ реализация frankenlandTabBarController
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (
interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight
);
}
@end
проблема в том, что я не хочу ВСЕ контроллеры представления моего tabbarapp в этой ориентации.
перезапись shouldAutorotateToInterfaceOrientation
метода в одном контроллере не имеет никакого эффекта.
есть идеи?
спасибо!