- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
Существует также удобная функция, которую вы можете использовать, если хотите сохранить чистоту:
return UIInterfaceOrientationIsLandscape(interfaceOrientation);