0

我在我的应用程序中添加了一个 swiper sdk。当我运行它的测试应用程序时它工作正常但是当我将我的文件导入它时.get错误

ld: library not found for -lCardAnalyLib1
clang: error: linker command failed with exit code 1 (use -v to see invocation)  

我搜索了错误,但不知道如何解决。有时会出现armv错误

(null): 找不到 -lCardAnalyLib1 的库,它是.a 类型文件

 #import <UIKit/UIKit.h>
 #import "AudioAnalyLib.h"
 #import <QuartzCore/QuartzCore.h
these are pre imported file but if i import any other file get above error
4

1 回答 1

0

您需要将 .a 文件添加到您的目标。在 Xcode 中选择目标的 Build Phases 选项卡,打开 Link Binary With Libraries 部分,然后添加您的库文件。

于 2012-11-26T15:46:29.147 回答