iOS .pch文件获取错误:“无效的预处理指令”

时间:2012-11-11 07:23:19

标签: ios

我的.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

是什么事?

1 个答案:

答案 0 :(得分:10)

使用“#import”而非“#improt”,您应该没问题。

“无效的预处理指令”只是说“语法”(或拼写)错误的另一种奇特方式。