好的,所以我已经设法解决了这个问题。需要注意的是 UIImagePickerController 类仅根据 Apple文档支持纵向模式。
要捕获旋转,willRotateToInterfaceOrientation
这里是没用的,所以你必须使用通知。在运行时设置自动布局约束也不是要走的路。
在 AppDelegate 中didFinishLaunchingWithOptions
,您需要启用轮换通知:
// send notification on rotation
[[UIDevice currentDevice]beginGeneratingDeviceOrientationNotifications];
在viewDidLoad
cameraOverlayView 的方法中UIViewController
添加以下内容:
//add observer for the rotation notification
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];
最后将orientationChanged:
方法添加到cameraOverlayUIViewController
- (void)orientationChanged:(NSNotification *)notification
{
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
double rotation = 0;
switch (orientation) {
case UIDeviceOrientationPortrait:
rotation = 0;
break;
case UIDeviceOrientationPortraitUpsideDown:
rotation = M_PI;
break;
case UIDeviceOrientationLandscapeLeft:
rotation = M_PI_2;
break;
case UIDeviceOrientationLandscapeRight:
rotation = -M_PI_2;
break;
case UIDeviceOrientationFaceDown:
case UIDeviceOrientationFaceUp:
case UIDeviceOrientationUnknown:
default:
return;
}
CGAffineTransform transform = CGAffineTransformMakeRotation(rotation);
[UIView animateWithDuration:0.4 delay:0.0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
self.btnCancel.transform = transform;
self.btnSnap.transform = transform;
}completion:nil];
}
上面的代码将旋转变换应用于我在本例中使用的 2 个 UIButtons btnCancel 和 btnSnap。这会在旋转设备时为您提供相机应用效果。我仍然在控制台中收到警告,<Error>: CGAffineTransformInvert: singular matrix.
不确定为什么会发生这种情况,但这与相机视图有关。
希望以上有所帮助。