美文网首页
debug输出rect,size和point的宏

debug输出rect,size和point的宏

作者: 陈_振 | 来源:发表于2018-06-25 16:15 被阅读0次
#define NSLogRect(rect) NSLog(@"%s x:%.4f, y:%.4f, w:%.4f, h:%.4f", #rect, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height)
#define NSLogSize(size) NSLog(@"%s w:%.4f, h:%.4f", #size, size.width, size.height)
#define NSLogPoint(point) NSLog(@"%s x:%.4f, y:%.4f", #point, point.x, point.y)

参考文章:

宏定义的黑魔法 - 宏菜鸟起飞手册

相关文章

网友评论

      本文标题:debug输出rect,size和point的宏

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