简体   繁体   中英

How to work with Aviary SDK in iOS

I want to create an image editing app and I am using Aviary but I can't find any tutorials on Aviary, that's why I'm having a problem on working on it.

Are there any tutorials for how to use Aviary SDK for iOS?

I am reading this document , but are there are any tutorials, to easily show what to do?

Just create an Aviary object:

AFPhotoEditorController *e = [[AFPhotoEditorController alloc] initWithImage:IMAGE];

[e setDelegate:self];

[self presentModalViewController:e animated:YES];

Then implement Finished & Canceled Delegate methods:

- (void)photoEditor:(AFPhotoEditorController *)editor finishedWithImage:(UIImage *)image

- (void)photoEditorCanceled:(AFPhotoEditorController *)editor

Good Luck!

Here is a link with detailed instructions on how to use the Aviary SDK from the Aviary website:

Aviary SDK Documentation

I hope this will help you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM