我在iOS7上使用UIImagePickerController。 我不想使用基本的相機控制,所以我設置showsCameraControl = NO; 因此,我可以看到我的iPhone5上沒有全屏uiimagepickercontroller。 「相機視圖」框架大小是設置之前的大小顯示相機控制。ios7 uiimagepickercontroller showscameracontrol
這裏是我的代碼,在MainViewController
CustomCamera *imagePickerController = [[CustomCamera alloc] init];
imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
imagePickerController.sourceType = sourceType;
imagePickerController.allowsEditing = NO;
imagePickerController.delegate = self;
imagePickerController.showsCameraControls = NO;
'CustomCamera' 定義的UIImagePickerController是UIImagePickerController類幾乎相同的(具有的.xib)。
我該如何解決我的問題?