DragonCherry / AssetsPickerViewController

Powerfully Customizable - Multiple Photo & Video Picker Controller
MIT License
388 stars 136 forks source link

iPad spacing between cell #101

Closed sumitkapoorshineweb closed 3 years ago

sumitkapoorshineweb commented 3 years ago

Hello sir,

I am using this library, on iPhone its working fine but on iPad getting space between cells, in demo project also getting same.... Simulator Screen Shot - iPad Pro (9 7-inch) - 2021-03-22 at 07 20 17

sumitkapoorshineweb commented 3 years ago

Hey guys,

I got fixes for this issue, I debug and find it happens because of modal presentation style not set in case of iPad specially. So I fixed like this

            if ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad ) {
                picker.modalPresentationStyle = .fullScreen
            }

Hopefully it helps someone....