1

我正在尝试使用 Dave DeLongs DDFileReader 类,但在构建时出现错误。

Undefined symbols for architecture x86_64:
  "_OBJC_CLASS_$_DDFileReader", referenced from:
      objc-class-ref in tmnAppDelegate.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

“DDFileReader.m”具有设定的目标成员资格,并且处于“编译源”中的构建阶段

我在 10.8.3 上使用 XCode 4.6.2
我确定这是一个菜鸟错误,但我仍然希望得到帮助。

谢谢

4

1 回答 1

2

当我查看您已签入 GitHub 的 DDFileReader.m 文件时,整个内容是:

//DDFileReader.m

#import "DDFileReader.h"

@interface NSData (DDAdditions)

@end

您需要将 .m 文件中的整个代码片段复制到其中。

于 2013-05-29T08:58:07.190 回答