0

我想创建一个图像编辑应用程序,我正在使用 Aviary,但我在 Aviary 上找不到任何教程,这就是我在处理它时遇到问题的原因。

是否有关于如何使用 Aviary SDK for iOS 的教程?

我正在阅读此文档,但是否有任何教程可以轻松展示如何操作?

4

2 回答 2

3

只需创建一个 Aviary 对象:

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

[e setDelegate:self];

[self presentModalViewController:e animated:YES];

然后实现 Finished & Canceled Delegate 方法:

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

- (void)photoEditorCanceled:(AFPhotoEditorController *)editor

祝你好运!

于 2012-11-13T09:47:03.330 回答
0

这是一个链接,其中包含有关如何使用 Aviary 网站上的 Aviary SDK 的详细说明:

Aviary SDK 文档

我希望这能帮到您。

于 2012-11-15T16:23:51.520 回答