I am trying to filter out live photos and videos however. This filter does not work:
I am trying to filter out live photos and videos. However, I am getting some unexpected results. Doing the following it doesn’t filter at all.
.photosPicker(isPresented: $shouldPresentPhotoPicker, selection: $manager.imageSelection, matching: .any(of: [.images, .not(.livePhotos), .not(.videos)]))
I thought it was maybe because I am including images. So I filtered out videos and live photos however this doesn’t seem to filter at all.
.photosPicker(isPresented: $shouldPresentPhotoPicker, selection: $manager.imageSelection, matching: .any(of: [.not(.videos), .not(.livePhotos)]))
Any help would be greatly appreciated.
David is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.