проблема с presentModalViewController

Если мой iPad находится в Альбомном режиме, и presentModalViewController называют, представление автоматически превращается в режим портрета. Какие-либо решения?

UIViewController * start = [[UIViewController alloc]initWithNibName:@"SecondView" bundle:nil];
start.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
start.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:start animated:YES];

В SecondView я уже добавил:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
5
задан gcamp 6 September 2011 в 22:03
поделиться