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?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top