awkward / Tatsi

A drop-in replacement for UIImagePickerController with the ability to select multiple images and/or videos
MIT License
110 stars 30 forks source link

Update title based on selected assets #58

Closed alexanderriv closed 2 years ago

alexanderriv commented 2 years ago

Title should reflect the number of assets selected by the user.

If a user selects a photo and video then the identifier of the asset changes to items. If a user selects one photo then the identifier changes to photo If a user selects multiple photos then the identifier changes to photos If a user selects on a video then the identifier changes to video

This is used in conjunction with the the selectedAssets count to give us a title in the format of:


"\(count) \(identifier) selected"

Example:

"3 photos selected"