Question

I'm creating an "Open in" menu in my app with UIDocumentInteractionController. I want to add native Photos app to this menu but I don't know how to do that? Can anyone point me a way?

Was it helpful?

Solution

You can't send to the camera roll through UIDocumentInteractionController. You have to do that one directly using:

UIImageWriteToSavedPhotosAlbum(myImage, completeTarget, completeSelector);

So you'll need to have an independent menu/icon item for it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top