How can I show last saved photo in Photos app iOS via "photos-redirect:" URL scheme?

ios

Solution

`photos-redirect://` is the URL Scheme for Photo App. However, it is undocumented, thus you shouldn't use it.

To view / select a photo, use `UIImagePickerController` .

Problem

When I use `photos-redirect://` URL scheme it just starts Photos app. How can I start Photos app with showing custom photo, for example, last saved? I can't find any examples, where used `photos-redirect://` URL scheme.

Original source