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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top