以下错误是由什么引起的?我没有做任何重大改变,突然它开始出现:
Linking /Users/JimB/Desktop/iPhone Dev/Games4Kids/build/Debug-iphonesimulator/ETFanClub.app/Games4Kids(1 error)
duplicate symbol .objc_category_nameNSString_HTTPExtensions in (path)ViewController3 and (path)ViewController1
Command /Xcode 3.1.4/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
符号
.objc_category_nameNSString_HTTPExtensions
重复,意味着类别NSString(HTTPExtensions)
被声明两次ViewController3
和ViewController1
。
检查这两个文件的标题
@implementation
中是否没有 #import
,和 它们不会同时具有 @implementation NSString(HTTPExtensions)
。