AVCaptureSession的Imagepicker

时间:2013-06-28 06:24:29

标签: iphone uiimagepickercontroller avcapturesession

我使用AVCaptureSession实现了拍照的代码。我有按钮从图库中选择图像。因此,我需要使用UIImagePickerController从图库中挑选图片。

是否可以使用UIImagepicker选择图库和AVCaptureSession进行拍照。如果我在同一个应用程序中使用它,appstore是否拒绝应用程序?

1 个答案:

答案 0 :(得分:0)

不确定。您想要创建一个源类型为UIImagePickerControllerSourceTypePhotoLibrary的UIImagePickerController:

UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate = self;
[self presentViewController:picker animated:YES completion:nil];

我无法想象Apple会拒绝你在你正在使用AVCaptureSession的同一个应用程序中这样做 - 毕竟他们提供的这些课程正是你所提议的。