我想创建一个图像编辑应用程序,我正在使用Aviary,但我在Aviary上找不到任何教程,这就是为什么我在使用它时遇到了问题。
有关于如何使用Aviary SDK for iOS的教程吗?
我正在读this document,但是有没有什么教程可以简单地告诉我该怎么做呢?
发布于 2012-11-13 17:47:03
只需创建一个Aviary对象:
AFPhotoEditorController *e = [[AFPhotoEditorController alloc] initWithImage:IMAGE];
[e setDelegate:self];
[self presentModalViewController:e animated:YES];然后实现已完成和已取消的委托方法:
- (void)photoEditor:(AFPhotoEditorController *)editor finishedWithImage:(UIImage *)image
- (void)photoEditorCanceled:(AFPhotoEditorController *)editor祝好运!
发布于 2012-11-16 00:23:52
以下是有关如何使用Aviary网站上的Aviary SDK的详细说明的链接:
Aviary SDK Documentation
我希望这能对你有所帮助。
https://stackoverflow.com/questions/13358199
复制相似问题