gpt4 book ai didi

iphone - 将 iPad 2 中的相机锁定为横向模式

转载 作者:行者123 更新时间:2023-11-28 20:39:15 29 4
gpt4 key购买 nike

尊敬的先生, 我在这里使用 uiimagepickercontroller 打开相机并拍照没问题。但是我需要如何锁定 uiimagepickercontroller 的横向模式。这里我附上了一些代码行

    UIImagePickerController *imgPkr = [[UIImagePickerController alloc] init];
imgPkr.delegate = self;
imgPkr.sourceType = UIImagePickerControllerSourceTypeCamera;
imgPkr.cameraDevice=UIImagePickerControllerCameraDeviceFront;

imgPkr.cameraOverlayView = anImageView;
[theApp.TabViewControllerObject presentModalViewController:imgPkr animated:YES];
[imgPkr release];

谢谢

最佳答案

子类化 UIImagePickerController,并像这样覆盖这个方法:

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

然后,不创建 UIImagePickerController,而是创建您创建的类的对象(您可以为其命名,例如 UILandscapeImagePickerController),它将仅支持横向。

关于iphone - 将 iPad 2 中的相机锁定为横向模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9255823/

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