8

嗨,我正在尝试复制相同的旋转,当方向转移到横向时,可以在相机应用程序中看到。不幸的是,我没有运气。我需要使用 UIImagePickerController 为自定义 cameraOverlayView 进行设置。

从这个肖像(B 是 UIButtons)

|-----------|
|           |
|           |
|           |
|           |
|           |    
|           |
| B   B   B |
|-----------|

到这风景

|----------------|
|              B |
|                |
|              B |
|                |
|              B |
|----------------|

换句话说,我希望按钮粘在原来的纵向底部并在它们的中心旋转。我正在使用情节提要并启用了自动布局。任何帮助是极大的赞赏。

4

1 回答 1

17

好的,所以我已经设法解决了这个问题。需要注意的是 UIImagePickerController 类仅根据 Apple文档支持纵向模式。

要捕获旋转,willRotateToInterfaceOrientation这里是没用的,所以你必须使用通知。在运行时设置自动布局约束也不是要走的路。

在 AppDelegate 中didFinishLaunchingWithOptions,您需要启用轮换通知:

// send notification on rotation
[[UIDevice currentDevice]beginGeneratingDeviceOrientationNotifications];

viewDidLoadcameraOverlayView 的方法中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.不确定为什么会发生这种情况,但这与相机视图有关。

希望以上有所帮助。

于 2013-04-12T09:09:24.183 回答