add modificationDate as second sort key in iOS
This commit is contained in:
parent
184b728f12
commit
e74d40b682
@ -170,7 +170,10 @@ public class SwiftPhotoGalleryPlugin: NSObject, FlutterPlugin {
|
|||||||
|
|
||||||
private func listMedia(albumId: String, skip: NSNumber?, take: NSNumber?, mediumType: String) -> NSDictionary {
|
private func listMedia(albumId: String, skip: NSNumber?, take: NSNumber?, mediumType: String) -> NSDictionary {
|
||||||
let fetchOptions = PHFetchOptions()
|
let fetchOptions = PHFetchOptions()
|
||||||
fetchOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: false)]
|
fetchOptions.sortDescriptors = [
|
||||||
|
NSSortDescriptor(key: "creationDate", ascending: false),
|
||||||
|
NSSortDescriptor(key: "modificationDate", ascending: false)
|
||||||
|
]
|
||||||
fetchOptions.predicate = predicateFromMediumType(mediumType: mediumType)
|
fetchOptions.predicate = predicateFromMediumType(mediumType: mediumType)
|
||||||
|
|
||||||
let collection = self.assetCollections.first(where: { (collection) -> Bool in
|
let collection = self.assetCollections.first(where: { (collection) -> Bool in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user