0

UIImagePicker 在我的应用程序处于 ladscape 模式时以 Portraite 模式打开。

在此处输入图像描述

UIimage 选择器的代码是

picker = [[UIImagePickerController alloc] init];

picker.delegate = self;
picker.allowsEditing = YES;

picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:picker animated:YES completion:nil];
4

1 回答 1

1

UIImagePickerController 类仅支持纵向模式。此类旨在按原样使用,不支持子类化。此类的视图层次结构是私有的,不得修改,但有一个例外。您可以将自定义视图分配给 cameraOverlayView 属性,并使用该视图来呈现附加信息或管理相机界面和代码之间的交互。

来自 Apple 文档的参考

于 2013-10-21T09:53:45.563 回答