美文网首页iOS学习
iOS 消除项目中的nslog函数

iOS 消除项目中的nslog函数

作者: 审判spp | 来源:发表于2016-08-26 08:07 被阅读0次

    在pch文件里编写如下代码

    //消除文件中的nslog函数

    #ifdef __OPTIMIZE__

    #define NSLog(...)NSLog(VA_ARGS__)

    #else

    #define NSLog(...){}

    #endif

    相关文章

      网友评论

        本文标题:iOS 消除项目中的nslog函数

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