我有一个使用AVCapturesession捕获图像的应用程序,我有一个内置UIView的View Controller,我在这个视图中运行会话。
当我的应用程序以纵向模式加载时一切都很好它打开全屏并且在旋转到横向模式时它也保持全屏,因为我的视图用于捕获图像我不允许仅旋转UIView捕捉图像一切都很好。
唯一的问题是,当我的应用程序以横向模式打开时,它不是全屏幕,一旦我将其旋转为肖像,它将全屏显示,然后在返回横向时它仍然全屏。
我该如何解决这个问题,还是有办法强制你的iOS应用程序始终以纵向模式打开,然后让它旋转?
答案 0 :(得分:0)
我遇到了同样的问题。你应该在app delegate类中实现这个方法。这是example.Hope你需要的。
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(nullable UIWindow *)window
{
if([window.rootViewController isKindOfClass:[HRMHomeViewController class]])
{
id homeViewController = (HRMHomeViewController*)window.rootViewController;
if ([[homeViewController presentedViewController]
isKindOfClass:[HRMCapturedScreenViewController class]])
return UIInterfaceOrientationMaskPortrait;
}
return UIInterfaceOrientationMaskAll;
}
使用此方法,相机图层的帧将根据方向旋转
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration
{
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation
duration:duration];
self.captureManager.cameraLayer.frame = self.videoView.bounds;
}
UINavigationController
中有一些方法可以提供帮助。这里有两种方式或类别为UINavigationController
或从中继承。
- (UIInterfaceOrientationMask)navigationControllerSupportedInterfaceOrientations:(UINavigationController *)navigationController
- (UIInterfaceOrientation)navigationControllerPreferredInterfaceOrientationForPresentation:(UINavigationController *)navigationController