Pregunta

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?

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top