Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 XCode 的输出窗口中删除日期和进程 ID?它们只占用大量空间而没有真正的价值。
使用这个宏,这将覆盖 NSLog 的默认行为,
#define NSLog(STRING, ...) printf("%s\n", [[NSString stringWithFormat:STRING, ##__VA_ARGS__] UTF8String]);