mirror of
https://github.com/yawut/SDL.git
synced 2026-09-07 08:36:19 -05:00
User interface guidelines says that you shouldn't allow upside-down orientation on phones.
This commit is contained in:
@@ -48,6 +48,12 @@
|
||||
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient
|
||||
{
|
||||
// Don't allow upside-down orientation on the phone, so answering calls is in the natural orientation
|
||||
if (orient == UIInterfaceOrientationPortraitUpsideDown) {
|
||||
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
|
||||
return NO;
|
||||
}
|
||||
|
||||
const char *orientationsCString;
|
||||
if ((orientationsCString = SDL_GetHint(SDL_HINT_ORIENTATIONS)) != NULL) {
|
||||
BOOL rotate = NO;
|
||||
|
||||
Reference in New Issue
Block a user