美文网首页
OC技巧收集

OC技巧收集

作者: 刻舟求鉴 | 来源:发表于2017-05-31 17:20 被阅读0次

    NSLog

    #ifdef DEBUG
    
    #define NSLog(FORMAT, ...) fprintf(stderr, "\n\n******(class)%s(begin)******\n(SEL)%s\n(line)%zd\n(data)%s\n******(class)%s(end)******\n\n", [[[NSString stringWithUTF8String: __FILE__] lastPathComponent] UTF8String], __FUNCTION__, __LINE__, [[NSString stringWithFormat: FORMAT, ## __VA_ARGS__] UTF8String], [[[NSString stringWithUTF8String: __FILE__] lastPathComponent] UTF8String]);
    
    #else
    
    #define NSLog(FORMAT, ...) nil
    
    #endif
    

    ViewController的简单"瘦身"

    奉上Demo


    相关文章

      网友评论

          本文标题:OC技巧收集

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