可能重复:
Is it possible to NSLog() without the time and date stamps, and the automatic newline?
这可能是一个愚蠢的问题,但我无法找到答案。
当我的程序在objective-c中结束时,每次NSLog打印某些内容时,它会写入写入此输出的日期和时间。
如何告诉X-Code不要打印此类信息?
我在屏幕上看到了这个:
--2013-01-11 18:57:53.016 GraphicObject[3084:403] -
|***2013-01-11 18:57:53.019 GraphicObject[3084:403] |
|***2013-01-11 18:57:53.020 GraphicObject[3084:403] |
|***2013-01-11 18:57:53.021 GraphicObject[3084:403] |
---2013-01-11 18:57:53.022 GraphicObject[3084:403] -
我试图打印这个:
-----
-***-
-***-
-***-
-----
谢谢大家!