我正在尝试使用Dave DeLongs DDFileReader Class但我在构建时遇到错误。
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
我确定这是一个菜鸟错误,但我仍然会感谢你的帮助。
由于
答案 0 :(得分:2)
当我查看您已检入GitHub的DDFileReader.m文件时,整个内容为:
//DDFileReader.m
#import "DDFileReader.h"
@interface NSData (DDAdditions)
@end
您需要将.m文件中的整个代码段复制到其中。