简体   繁体   English

如何在iOS中使用Aviary SDK

[英]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. 我想创建一个图像编辑应用程序,并且正在使用Aviary,但找不到有关Aviary的任何教程,这就是为什么我在使用它时遇到问题。

Are there any tutorials for how to use Aviary SDK for iOS? 是否有有关如何使用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: 然后实现Finished&Canceled Delegate方法:

- (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网站上的Aviary SDK的详细说明:

Aviary SDK Documentation 航空SDK文档

I hope this will help you. 我希望这能帮到您。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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