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.
fprintf日志未在 Xcode Organizer Console 上打印。
fprintf
我也试过
fprintf(stdout, "STARTED!\n"); fflush(stdout);
和
printf("");
但上述方法似乎都不起作用。我可以在 Xcode 调试控制台中看到日志,但在管理器控制台中看不到。
有任何想法吗?
这样使用syslog:
syslog
#include <syslog.h> syslog(LOG_ERR, "Started!");
更多信息在这里:https ://developer.apple.com/library/ios/documentation/System/Conceptual/ManPages_iPhoneOS/man3/syslog.3.html