0
我在我的應用程序中實現了拍照功能。但我無法拍全屏圖像。它顯示我一個矩形來選擇圖像區域。iOS UIImagePickerControllerSourceTypeCamera全屏照片無法捕捉
我的來源是這樣的:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController:picker animated:YES completion:NULL];
如何從相機拍攝全屏圖象?
嘗試設置後 - picker.allowsEditing = NO; –
是的,我在你告訴我之前試過。但是非常感謝你。 –