문제

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