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

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

作者: fallrainy | 来源:发表于2016-05-23 15:13 被阅读183次

在做聊天这一块的时候,需要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 <Foundation/Foundation.h>
#endif
    
#ifdef __cplusplus
}
#endif

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

相关文章

网友评论

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

      本文链接:https://www.haomeiwen.com/subject/gimarttx.html