.pch
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "thing.h"
#endif
我有一个非常大的项目我正在尝试调试,我怀疑问题出在 thing.h
据我了解,.pch 文件包含在项目的每个 .m 和 .h 中。
是否可以不将其仅包含在一个或两个文件中?对于调试,我不想只在一个测试文件中包含 thing.h,但是从 .pch 中删除它会导致整个项目的级联噩梦。