Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top