gpt4 book ai didi

ios - 始终以横向录制视频甚至设备旋转(横向->纵向->横向)

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:06:59 27 4
gpt4 key购买 nike

即使我的设备旋转(纵向->横向->纵向),我也需要始终以横向模式录制视频。

取角度很简单,我用的是hyroscope。我的问题是总是横向录制视频。需要任何建议。

我正在使用 AVCaptureSession 进行视频录制。 AV可变组合?我不知道该用什么...请帮助我

最佳答案

为什么不强制您的 Controller 只处于横向模式?

你可以这样做:

- (BOOL)shouldAutorotate 
{
return YES;
}

-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskLandscapeLeft;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeRight;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

关于ios - 始终以横向录制视频甚至设备旋转(横向->纵向->横向),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22401187/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com