我的.pch文件:
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#improt "Constant.h" // here there is a error:
#endif
行:#improt“Constant.h”获取错误
Invalid preprocessing directive
是什么事?
答案 0 :(得分:10)
使用“#import
”而非“#improt
”,您应该没问题。
“无效的预处理指令”只是说“语法”(或拼写)错误的另一种奇特方式。