Amit Kumar
Amit Kumar

Reputation: 107

Can I use the default image editor available in my iOS app?

I want to implement an image editing functionality similar to the native one provided by Apple in iPhones. Is it available to use inside the app? If not then is there any similar library available?

Upvotes: 2

Views: 1608

Answers (2)

Travis M.
Travis M.

Reputation: 11257

If anyone stumbles across this question nowadays, please look into adding a photo editing extension to your app and using the PHContentEditingController protocol to launch the native photo editor.

Here's a great walkthrough for iOS 16.

Upvotes: 0

scott
scott

Reputation: 1194

Yes, you can do this. You can't just pull up the built-in editing controls, though. You'll need to apply filters and effects using CoreImage. This tutorial has a step by step process on how to apply filters like sepia and black and white.

Upvotes: 1

Related Questions