我不希望我的应用程序被美化并始终是porttrait。所以我使我的应用部署信息仅设置肖像。但是当我需要在我的应用程序中显示任何图像或视频时,我需要横向模式以便更好地显示。
我可以通过
检测设备方向的变化[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification
object:[UIDevice currentDevice]];
- (void) orientationChanged:(NSNotification *)note
{
UIDevice * device = note.object;
switch(device.orientation)
{
case UIDeviceOrientationPortrait:
/* */
break;
case UIDeviceOrientationPortraitUpsideDown:
/* */
break;
case UIDeviceOrientationLandscapeLeft:
/* */
break;
case UIDeviceOrientationLandscapeRight:
/* */
break;
default:
break;
};
}
但是,即使应用程序部署信息纵向被锁定,如何手动更改设备方向?
无效
NSNumber *value=[NSNumber numberWithInt: UIDeviceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
答案 0 :(得分:6)
两个步骤:
在每个视图控制器viewDidLoad
中,您需要包含:
//Swift
let value = UIInterfaceOrientation.LandscapeLeft.rawValue
UIDevice.currentDevice().setValue(value, forKey: "orientation")
//Obj-C
NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
另请参阅:How do I programmatically set device orientation in iOS7?
答案 1 :(得分:6)
请启用Portrait&从项目设置中进行构图。然后使用下面的方法让所有viewcontroller关闭自动旋转 -
- (BOOL)shouldAutorotate {
return NO;
}
然后将以下方法用于除LandScapeViewControler之外的所有方法 -
- (void)viewWillAppear:(BOOL)animated {
[[UIDevice currentDevice] setValue:
[NSNumber numberWithInteger: UIInterfaceOrientationPortrait]
forKey:@"orientation"];
}
使用以下方法进行LandScapeViewControler -
- (void)viewWillAppear:(BOOL)animated {
[[UIDevice currentDevice] setValue:
[NSNumber numberWithInteger: UIInterfaceOrientationLandscapeLeft]
forKey:@"orientation"];
}
如果您使用的是NavigationController和TabBarController,请使用类别关闭自动旋转。
希望这会对你有所帮助。
答案 2 :(得分:3)
除了强制进行方向更改外,您还应该创建一个横向导航控制器,并通过呈现来使用它。然后你的应用程序将始终是您想要的肖像。当您使用此导航控制器时,它将会显示。
#import "RotationAwareNavigationController.h"
@implementation RotationAwareNavigationController
-(BOOL)shouldAutorotate {
return NO;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeRight;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
你应该像下面这样打电话;
RotationAwareNavigationController *navController = [[RotationAwareNavigationController alloc] initWithRootViewController:aViewController];
[self presentViewController:navController animated:NO completion:nil];
答案 3 :(得分:0)
更新了Swift 3 +的答案:
let value = UIInterfaceOrientation.landscapeLeft.rawValue
UIDevice.current.setValue(value, forKey: "orientation")