3

我正在使用 Apple 的 AVCam 示例应用程序。

此示例使用 AVFoundation 在视图上显示视频。

我正在尝试从 AVCam 制作一个没有运气的风景应用程序。

当屏幕方向改变时,视频会在视图上旋转显示。有没有办法处理这个问题?

4

3 回答 3

10

创建预览层时:

captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;

以及管理轮换的方法:

-(void)willAnimateRotationToInterfaceOrientation:
        (UIInterfaceOrientation)toInterfaceOrientation 
        duration:(NSTimeInterval)duration {

  [CATransaction begin];
  if (toInterfaceOrientation==UIInterfaceOrientationLandscapeLeft){
    captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;
  } else {        
    captureVideoPreviewLayer.orientation = UIInterfaceOrientationLandscapeLeft;
  }

 [CATransaction commit];
 [super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
}

-(BOOL)shouldAutorotateToInterfaceOrientation:
        (UIInterfaceOrientation)interfaceOrientation {

  [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];

  return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}

这对我有用。

于 2011-07-11T19:19:32.610 回答
0

您是否使用预览图层的方向和重力设置?

previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:session];
previewLayer.frame = CGRectMake(0, 0, 480, 300); 
previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
previewLayer.orientation =  AVCaptureVideoOrientationLandscapeRight;
previewLayer.automaticallyAdjustsMirroring = YES;
于 2011-06-11T20:51:12.087 回答
0

宣布

- (BOOL)shouldAutorotate;

在你的 .h 中。

然后做:

- (BOOL)shouldAutorotate {
    return NO;
}

在你的 .m

这将迫使它不旋转。

于 2012-10-11T16:47:50.383 回答