Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Photos app programmatically

Is it possible to launch the "Photos" application from an iPhone app? Similar to launching mail?

[[UIApplication sharedApplication] openURL:url];
like image 349
Alex Milde Avatar asked Jul 06 '10 15:07

Alex Milde


1 Answers

The Photos app doesn't appear to register any URL schemes that other apps can use. There's a pretty well-established pattern in other system apps (e.g. Safari) of “saving an image” resulting in that image being placed in the user's camera roll; I'd recommend just sticking with that expected behavior, and perhaps using an alert to direct the user to look there for your app's exported image.

like image 179
Noah Witherspoon Avatar answered Sep 28 '22 12:09

Noah Witherspoon