在做聊天这一块的时候,需要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参考
网友评论