美文网首页
可以写在宏里的东西

可以写在宏里的东西

作者: sendo | 来源:发表于2017-01-02 17:07 被阅读0次

调试


#ifdef DEBUG

#define XXXLog(...) NSLog(__VA_ARGS__)

#else

#define XXXLog(...)

#endif

#define XXXLogFunc XXXLog(@"%s", __func__)

颜色


#define XXXRGBColor(r,g,b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]

#define XXXGlobalBG XXXRGBColor(242, 242, 242)

相关文章

网友评论

      本文标题:可以写在宏里的东西

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