dillidon / alerts-and-pickers

Advanced usage of UIAlertController and pickers based on it: Telegram, Contacts, Location, PhotoLibrary, Country, Phone Code, Currency, Date...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Selected images from Image Picker

amervil opened this issue · comments

How can I get the single or multiple images selected by user?

commented

Have a look an example in ViewController:

alert.addImagePicker(
   flow: .vertical,
   paging: false,
   images: photos,
   selection: .single(action: { image in
       // selected image here
   }))

thanks!