m48plus/Classes/m48NavigationController.m
2020-05-05 20:15:30 +02:00

61 lines
2 KiB
Objective-C

/*
* m48NavigationController.m
*
* This file is part of m48
*
* Copyright (C) 2009 Markus Gonser, m48@mksg.de
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#import "m48NavigationController.h"
#import "xml.h"
@implementation m48NavigationController
@synthesize fixedOrientationIsValid = _fixedOrientationIsValid;
@synthesize fixedOrientation = _fixedOrientation;
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
//return IsAllowedOrientation(interfaceOrientation);
if (_fixedOrientationIsValid)
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"internalIsIPad"]) {
return YES; //iPad experimental orientation
}
else {
return (interfaceOrientation == _fixedOrientation);
}
else
return ([super shouldAutorotateToInterfaceOrientation:interfaceOrientation]);
}
- (BOOL)shouldAutorotate {
UIInterfaceOrientation interfaceOrientation = [[UIDevice currentDevice] orientation];
//return IsAllowedOrientation(interfaceOrientation);
if (_fixedOrientationIsValid)
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"internalIsIPad"]) {
return YES; //iPad experimental orientation
}
else {
return (interfaceOrientation == _fixedOrientation);
}
else
return ([super shouldAutorotateToInterfaceOrientation:interfaceOrientation]);
}
@end