0

我的 .pch 文件:

 #ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
    #improt "Constant.h" // here there is a error: 
 #endif

line : #improt "Constant.h" 获取错误

Invalid preprocessing directive

有什么事?

4

1 回答 1

10

使用“ #import”而不是“ #improt”,你应该没问题。

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

于 2012-11-11T07:26:07.427 回答