美文网首页
PrefixHeader.pch文件

PrefixHeader.pch文件

作者: 浮生若梦_337d | 来源:发表于2018-11-16 11:53 被阅读0次

    PrefixHeader.pch 是一个预编译的文件

    New File >> Other >> PCH File  新建PrefixHeader.pch

    Targets >> Bulid Setting >> Apple clang - Language 

    修改Precompile Prefix Header为YES;

    Prefix Header路径设置为 $(SRCROOT)/项目名称/PrefixHeader.pch

    代码:

    #ifndef PrefixHeader_pch

    #define PrefixHeader_pch

    // Include any system framework and library headers here that should be included in all compilation units.

    // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.

    #ifdef DEBUG

    #define MYLog(...) NSLog(__VA_ARGS__)

    #else

    #define MYLog(...)

    #endif

    #endif /* PrefixHeader_pch */

    相关文章

      网友评论

          本文标题:PrefixHeader.pch文件

          本文链接:https://www.haomeiwen.com/subject/tnzpfqtx.html