Ios 如何从相机卷和照片库中选择多个视频?

Ios 如何从相机卷和照片库中选择多个视频?,ios,iphone,objective-c,Ios,Iphone,Objective C,我想使用ASIHttDataFormRequest将多个视频上载到服务器。对于选择视频,我使用ImagePickerViewController,但它没有提供选择多个视频的选项 UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init]; imagePicker.delegate = self; imagePicker.allowsEditing = YES; imagePicker.mediaTyp

我想使用ASIHttDataFormRequest将多个视频上载到服务器。对于选择视频,我使用ImagePickerViewController,但它没有提供选择多个视频的选项

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
imagePicker.mediaTypes = [[NSArray alloc] initWithObjects: (NSString *) kUTTypeMovie, nil];
imagePicker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentViewController:imagePicker animated:YES completion:nil];
下面是代码,用于打开imagePicker,但无法选择多个视频

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
imagePicker.mediaTypes = [[NSArray alloc] initWithObjects: (NSString *) kUTTypeMovie, nil];
imagePicker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentViewController:imagePicker animated:YES completion:nil];

请帮我提供一些线索或代码。提前感谢

这里是要拍照或从图书馆中选择的图书馆:

到目前为止,这对照片非常有效。正在播放视频。

使用此示例

有关视频多选,请参阅


希望它对您有所帮助。

您的输入非常感谢,但仅仅提供到教程网站或Github的链接并不是一个很好的答案。请将它们作为评论发布。谢谢回复。但我想上传多个Video@KDRocks您可以根据您的要求自定义此控件,如选择照片,也可以更改为视频,因此非常感谢您的输入,但仅提供指向教程网站或Github的链接并不能真正提供好的答案。请将其作为评论发布。感谢您的回复。但是可以使用ImagePickerController选择多个视频。如何对ELCImagePickerController设置仅选择视频而不选择任何图像的限制。使用资产库。如何使用ELCImagePickerController获取视频url