Using PHImageManager, is it possible to query the UIImages group from the PHAssets group in one call?

If not, what would be the best way to do this?

Tell the user to select multiple PHAsset

in the UI, then click Finish. I want to organize these images into an array appropriate UIImage

for caching in the application.

Do I need to call requestImageForAsset

on each PHAsset

and also count how many of them have been executed and then map them into an array at the end? Isn't there a clean way to say "give me UIImages for these PHAssets"?

+3


source to share


1 answer


You're right. There is no single challenge that will accomplish this. You have to individually request each PHAsset image and display them together yourself.



0


source







All Articles