@ -30,6 +30,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
private var photoCollection : PhotoCollection
private var photoCollectionContents : PhotoCollectionContents
private let photoMediaSize = PhotoMediaSize ( )
private var firstSelectedIndexPath : IndexPath ?
var collectionViewFlowLayout : UICollectionViewFlowLayout
var titleView : TitleView !
@ -212,6 +213,12 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
let cellSize = collectionViewFlowLayout . itemSize
photoMediaSize . thumbnailSize = CGSize ( width : cellSize . width * scale , height : cellSize . height * scale )
// W h e n w e s e l e c t t h e f i r s t i t e m w e i m m e d i a t e l y d e s e l e c t i t s o i t d o e s n ' t l o o k o d d w h e n p u s h i n g t o t h e
// n e x t s c r e e n , b u t t h i s i n t u r n l o o k s o d d i f t h e u s e r r e t u r n s a n d t h e i t e m i s d e s e l e c t e d
if let firstSelectedIndexPath : IndexPath = firstSelectedIndexPath {
collectionView . cellForItem ( at : firstSelectedIndexPath ) ? . isSelected = true
}
if ! hasEverAppeared {
scrollToBottom ( animated : false )
}
@ -249,6 +256,13 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
DispatchQueue . main . async {
// p r e - l a y o u t c o l l e c t i o n P i c k e r f o r s n a p p i e r r e s p o n s e
self . collectionPickerController . view . layoutIfNeeded ( )
// W e a l s o n e e d t o a c t u a l l y i n f o r m t h e c o l l e c t i o n V i e w t h a t t h e i t e m s h o u l d b e s e l e c t e d ( i f w e d o n ' t
// t h e n t h e u s e r w o n ' t b e a b l e t o d e s e l e c t i t )
if let firstSelectedIndexPath : IndexPath = self . firstSelectedIndexPath {
self . collectionView . selectItem ( at : firstSelectedIndexPath , animated : false , scrollPosition : . centeredHorizontally )
self . collectionView . cellForItem ( at : firstSelectedIndexPath ) ? . isSelected = true
}
}
}
@ -489,9 +503,11 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
didSelectAsset : asset ,
attachmentPublisher : photoCollectionContents . outgoingAttachment ( for : asset )
)
firstSelectedIndexPath = nil
if ! delegate . isInBatchSelectMode {
// D o n ' t s h o w " s e l e c t e d " b a d g e u n l e s s w e ' r e i n b a t c h m o d e
firstSelectedIndexPath = indexPath
collectionView . deselectItem ( at : indexPath , animated : false )
delegate . imagePickerDidCompleteSelection ( self )
}
@ -511,6 +527,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat
}
delegate . imagePicker ( self , didDeselectAsset : asset )
firstSelectedIndexPath = nil
}
override func collectionView ( _ collectionView : UICollectionView , numberOfItemsInSection section : Int ) -> Int {