I use UIImageWriteToSavedPhotosAlbum to save a photo to the Photo Library:
UIImageWriteToSavedPhotosAlbum(my_img, nil, nil, nil);
And on completion I want to get the PHAsset of this photo in order to change its creationDate. How can I get this PHAsset?
I have read Get PHAsset/localIdentifier of image saved to photo library, but it doesn't seem to help. Thanks in advance.