Разрешить только ориентацию LeftLandscape и RightLandscape - PullRequest
1 голос
/ 08 июня 2010

Как я могу сделать свое приложение, чтобы разрешить только альбомную ориентацию, но оба (слева и справа)?поэтому, если я поверну на 180 °, приложение будет вращаться, но если я поверну в портретном режиме, приложение не будет вращаться?

спасибо

1 Ответ

1 голос
/ 08 июня 2010

Попробуйте добавить это в свой UIViewController:

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
            interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

Подробнее об этом можно узнать здесь: Справочник по классам UIViewController

...