is it possible to launch the "Photos" application out of an iphone app? Similar to launching mail?

[[UIApplication sharedApplication] openURL:url];
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
saving and alerting works already fine. so i think i just have to tell the client we don't need the "as Backround" button anymore ;) – Alex Milde Jul 6 '10 at 16:33
feedback

This article looks like it might be useful? Getting images from the iPhone

link|improve this answer
thanks, but no. i wanted to provide the user the possibility to set the background image. i know this cant be done - so i wanted to send the user to the built in photos application. – Alex Milde Jul 6 '10 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.