添加C文件,编译报莫名其妙的错误

在做聊天这一块的时候,需要wav转amr,用到了VoiceConvert库,这个库是用C写的,编译的时候报错了:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:373:19: error: unknown type name 'NSString'FOUNDATION_EXPORT NSString *NSStringFromSelector(SEL aSelector);
经过Google 终于在 stackoverFlow找到了答案,在pch文件加入

#ifdef __cplusplus
extern "C" {
#endif
    
#ifdef __OBJC__
#import 
#endif
    
#ifdef __cplusplus
}
#endif

注意一定 要在pch 文件的开头加入,否则仍可能编译错误
stackoverflow参考

你可能感兴趣的:(添加C文件,编译报莫名其妙的错误)