美文网首页
自定义MyLog

自定义MyLog

作者: 山东菏泽朱志强 | 来源:发表于2017-02-28 20:59 被阅读21次

在.pch文件中,写入

#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

    #ifdef DEBUG
    #define MyLog(...) NSLog(__VA_ARGS__)
    #else
    #define MyLog(...)
    #endif

#endif

相关文章

网友评论

      本文标题:自定义MyLog

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