我实现了使用AVCaptureSession
. 我有按钮从图库中选择图像。所以,我需要UIImagePickerController
用于从图库中挑选图像。
是否可以UIImagepicker
用于挑选画廊和AVCaptureSession
拍照。如果我在同一个应用程序中使用它,应用程序商店是否拒绝应用程序?
我实现了使用AVCaptureSession
. 我有按钮从图库中选择图像。所以,我需要UIImagePickerController
用于从图库中挑选图像。
是否可以UIImagepicker
用于挑选画廊和AVCaptureSession
拍照。如果我在同一个应用程序中使用它,应用程序商店是否拒绝应用程序?
当然。你想用 UIImagePickerControllerSourceTypePhotoLibrary 的 sourceType 创建你的 UIImagePickerController:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate = self;
[self presentViewController:picker animated:YES completion:nil];
我无法想象 Apple 会拒绝您在您使用 AVCaptureSession 的同一应用程序中执行此操作 - 毕竟,他们提供这些类来完全按照您的建议进行操作。