User interface guidelines says that you shouldn't allow upside-down orientation on phones.
This commit is contained in:
parent
4684591de2
commit
1ab7a260eb
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue