Запустите приложение и оставайтесь в ландшафтном режиме - PullRequest
3 голосов
/ 15 июня 2011

Как я могу запустить свое приложение в ландшафтном режиме и поддерживать поворот экрана таким образом?

Ответы [ 2 ]

5 голосов
/ 15 июня 2011
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || 
   interfaceOrientation == UIInterfaceOrientationLandscapeRight);
} 
1 голос
/ 15 июня 2011

Реализация метода shouldAutorotateToInterfaceOrientation: контроллера представления и return UIInterfaceOrientationIsLandscape(orientation);

Также установите Info.plist клавиши UIInterfaceOrientation и UISupportedInterfaceOrientations на UIInterfaceOrientationLandscapeLeft и UIInterfaceOrientationLandscapeRight. UIInterfaceOrientation примет одно значение, поэтому присвойте одно из них и присвойте им обоим UISupportedInterfaceOrientations.

...