gpt4 book ai didi

swift - 如何在 Swift 中检测横向方向并将其应用于 AVCaptureVideoPreviewLayer?

转载 作者:搜寻专家 更新时间:2023-10-30 22:22:20 25 4
gpt4 key购买 nike

我基本上是在回答这个问题 AVCaptureVideoPreviewLayer orientation - need landscape除了在 Swift 中。

我的目标是 iOS 8,AVCaptureVideoPreviewLayer 似乎没有 setVideoOrientation 函数。

我应该如何检测方向已经改变,并适本地旋转 AVCaptureVideoPreviewLayer?

最佳答案

检测并在 viewWillLayoutSubviews 中应用它,或者如果您在 layoutSubviews 中使用 UIView 子类。

方法如下:

override func viewWillLayoutSubviews() {

let orientation: UIDeviceOrientation = UIDevice.current.orientation

previewLayer.connection?.videoOrientation = {
switch (orientation) {
case .portrait:
return .portrait
case .landscapeRight:
return .landscapeLeft
case .landscapeLeft:
return .landscapeRight
default:
return .portrait
}
}()
}

关于swift - 如何在 Swift 中检测横向方向并将其应用于 AVCaptureVideoPreviewLayer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31955373/

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