phonegap整合aviary / adobe-creative-sdk-foundation sdk

时间:2014-12-30 10:10:06

标签: ios cordova phonegap-plugins

我有一个带AdobeCreativeSDKFoundation框架的原生iOS应用。我想在phoneGap中集成这个框架(完全noob到phoneGap)。我关注此link并安装了com.phonegap.adobe-creative-sdk-foundation plugin

但我不知道如何通过phoneGap中的按钮点击打开鸟舍照片编辑器。

在iOS中,我刚刚调用了followng方法来打开编辑器:

-(void)setupEdit
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [[AdobeUXAuthManager sharedManager] setAuthenticationParametersWithClientID:@"5587f31263dc4f38b003dc0a5d9a2e5f" withClientSecret:@"81292c83-eec7-42df-be72-334cbc1d6828"];
    });

    AdobeUXImageEditorViewController *editorController = [[AdobeUXImageEditorViewController alloc] initWithImage:[UIImage imageNamed:@"hulk.jpeg"]];
    [editorController setDelegate:self];

    [self.navigationController presentViewController:editorController animated:YES completion:nil];
}

这是我得到的输出:

我如何在phoneGap中执行相同的操作?安装插件后我从哪里开始?另外如何在config.xml中指定插件?

0 个答案:

没有答案