iOS CAlayer Orientation AVCaptureVideoPreviewLayer doesn't rotate

后端 未结 8 748
既然无缘
既然无缘 2020-12-24 09:50

\"enter Summary: I can\'t force the CALayer to respond correctly to orientati

8条回答
  •  臣服心动
    2020-12-24 10:38

    What about this?

    - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
    {
        _videoPreviewLayer.connection.videoOrientation = toInterfaceOrientation;
    }
    

提交回复
热议问题