我必须集成称为AdobeCreativeSDK.的AviarySDK我添加了AdobeCreativeSDKFoundation和AdobeCreativeSDKImage以及其他与其相关的框架。还添加了一些链接标志。并参考以下链接。我正在使用XCode 6.1.。
这是我的密码。
#import <AdobeCreativeSDKFoundation/AdobeCreativeSDKFoundation.h>
#import <AdobeCreativeSDKImage/AdobeCreativeSDKImage.h>添加AdobeUXImageEditorViewControllerDelegate
[[AdobeUXAuthManager sharedManager]setAuthenticationParametersWithClientID:@"MyKey" withClientSecret:@"MySecret"];
AVYPhotoEditorController *editorController = [[AVYPhotoEditorController alloc] initWithImage:imageToEdit];
[editorController setDelegate:self];
[self presentViewController:editorController animated:YES completion:nil];
#pragma mark - AdobeCreativeSDK Delegates
- (void)photoEditor:(AdobeUXImageEditorViewController *)editor finishedWithImage:(UIImage *)image
{
//Got Image.
[self dismissViewControllerAnimated:YES completion:nil];
}
- (void)photoEditorCanceled:(AdobeUXImageEditorViewController *)editor
{
[self dismissViewControllerAnimated:YES completion:nil];
}但我发现了一些未知的错误如下。
*终止应用程序,原因是未发现异常“SDK版本错配”,原因:“未找到CreativeSDKFoundation版本”
请检查下面的截图。

我漏掉了什么?帮助就会变成学徒。
发布于 2015-03-31 04:38:56
我发现了问题所在。您必须在构建阶段中为您的每个框架添加捆绑资源,▸复制绑定资源,您必须手动添加。包资源存在于AdobeCreativeSDKImage.framework▸版本▸A▸Resources下。对于添加到项目中的所有框架,请遵循相同的步骤。
https://stackoverflow.com/questions/29338701
复制相似问题