Say I'm writing a word processing application. Users can embed images using the app. Now, since the application is not a photo editor, naturally, it will delegate editing photos of embedded images to other applications.
The question is how to do this? How to call extensions for editing photos in the iOS application?
Theoretically, it should be as simple as transferring an image, invoking an extension, and then returning another image as an “edited” image. However, the SDK documentation does not seem to give any hint on how to do this.
source
share