我使用AVCaptureSession
实现了拍照的代码。我有按钮从图库中选择图像。因此,我需要使用UIImagePickerController
从图库中挑选图片。
是否可以使用UIImagepicker
选择图库和AVCaptureSession
进行拍照。如果我在同一个应用程序中使用它,appstore是否拒绝应用程序?
答案 0 :(得分:0)
不确定。您想要创建一个源类型为UIImagePickerControllerSourceTypePhotoLibrary的UIImagePickerController:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
我无法想象Apple会拒绝你在你正在使用AVCaptureSession的同一个应用程序中这样做 - 毕竟他们提供的这些课程正是你所提议的。