iPhone 开发版 Xcode 中出现奇怪的、突然的编译器失败错误

问题描述 投票:0回答:1

以下错误是由什么引起的?我没有做任何重大改变,突然它开始出现:

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
objective-c iphone xcode
1个回答
1
投票

符号

.objc_category_nameNSString_HTTPExtensions
重复,意味着类别
NSString(HTTPExtensions)
被声明两次
ViewController3
ViewController1

检查这两个文件的标题

@implementation
中是否没有
#import
它们不会同时具有
@implementation NSString(HTTPExtensions)

© www.soinside.com 2019 - 2024. All rights reserved.