1.第一步,创建pch文件

iOS添加pch文件-LMLPHP

第二步设置pch文件:相对地址,填写$(SRCROOT)/YTCompleteCarSell/PrefixHeader.pch  $(SRCROOT)是项目地址/项目名/pch文件名

iOS添加pch文件-LMLPHP

pch代码:如果把masonary第三方设置为全局导入类,就可以这么写

#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#import <Masonry/Masonry.h>
#endif /* PrefixHeader_pch */
04-17 19:44