Open irfanabdulkhaliq opened 1 year ago
let options = imagePicker.settings.fetch.album.options imagePicker.settings.fetch.album.fetchResults = [ PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumUserLibrary, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .any, options: options) // PHAssetCollection.fetchAssetCollections(with: .album, subtype: .albumRegular, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumFavorites, options: options), PHAssetCollection.fetchAssetCollections(with: .album, subtype: .albumRegular, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumSelfPortraits, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumPanoramas, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumVideos, options: options)
]
Above code is not working on IOS 16. Anyone who knows how to show album list while selecting photo.
Set it up before you present the imagepicker.
let options = imagePicker.settings.fetch.album.options imagePicker.settings.fetch.album.fetchResults = [ PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumUserLibrary, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .any, options: options) // PHAssetCollection.fetchAssetCollections(with: .album, subtype: .albumRegular, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumFavorites, options: options), PHAssetCollection.fetchAssetCollections(with: .album, subtype: .albumRegular, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumSelfPortraits, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumPanoramas, options: options), PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumVideos, options: options)
Above code is not working on IOS 16. Anyone who knows how to show album list while selecting photo.