我想使用ASIHttDataFormRequest将多个视频上传到服务器。为了选择视频,我使用的是ImagePickerViewController但它没有提供选择多个视频的选项。
Bellow是代码,用于打开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];
请提供一些线索或代码来帮助我。在此先感谢
答案 0 :(得分:1)
使用此示例
https://github.com/B-Sides/ELCImagePickerController
对于视频多重选择,请参阅
Use ELCImagePickerController to pick video
希望它可以帮助你..
答案 1 :(得分:0)
以下是用于拍摄照片或从库中选择的库:https://github.com/fulldecent/FDTake
到目前为止这对照片效果很好。视频正在进行中。