Where is the option for multiple selection of Image/Video?
@PawanManjani It is not supported at the moment but we're working on it. You can track advancement here : https://github.com/Yummypets/YPImagePicker/pull/47
@s4cha Thanks for responding, When you guys will complete this multiple selection feature?
@PawanManjani hopefully by the end of the month :)
@PawanManjani you can take a participation in it ;)
@s4cha you will complete with both image and video multiple selection??
@PawanManjani yes
Okay, Please update me once you update it...
Hey @s4cha have to uploaded a new version with multiple selection?
@PawanManjani not yet, NikKovIos is on it. By the way @NikKovIos, don't hesitate if you need a hand on something :)
Yes. Im gonna make it at this or next week.
ok thanks we are waiting for it. Also work for Edit option (like brightness) like Instagram to make this third party complete
Hi! Have you finished multiple selection feature? Really looking forward to it!
@Didar1994 The basic implementation is finished, you can fetch it directly from the multipleSelection branch. But it still in development.
not found . Multiple selection for images and video
can i use the multiple selection option?
The multiple selection is under construction currently. Also there would be add a video trimming and cover image fetching features from the box 馃榾
To use it in pre release mode, write in your podfile:
pod 'YPImagePicker', :git => 'https://github.com/Yummypets/YPImagePicker.git', :branch => 'multipleSelection' # Instagramm like image picker
Thumbs up if helped!
Okay.. please inform once the multiple selection is done..
Hey NikKovIos it is fine. but can you help me to send the multiple image to another viewController. previously i am using ImagePickerController, and i sent the image in the doneButtonDidPress. where to implement that particular code here? i have found that When pressing "Next" done() function is calling but i am unable to send the image. please help
Sir here's no any delegate or method that returns selected image. Can you help me regarding this matter
@goribchat The way to do it with multiple selection is like this:
config.delegate = self
let picker = YPImagePicker(configuration: config)
present(picker, animated: true, completion: nil)
extension VC: YPImagePickerDelegate {
func imagePicker(_ imagePicker: YPImagePicker, didSelect items: [YPMediaItem]) {
_ = items.map { print("馃 \($0.type)") }
}
func imagePickerDidCancel(_ imagePicker: YPImagePicker) {}
}
@s4cha You are Awesome
@PawanManjani Thank this guy -> @NikKovIos . Thanks for your patience :)
Most helpful comment
The multiple selection is under construction currently. Also there would be add a video trimming and cover image fetching features from the box 馃榾
To use it in pre release mode, write in your podfile:
pod 'YPImagePicker', :git => 'https://github.com/Yummypets/YPImagePicker.git', :branch => 'multipleSelection' # Instagramm like image pickerThumbs up if helped!