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 调试器运行两个应用程序时,我可以在控制台中看到它们自己的 NSLog。但是当一个应用程序存在一个exit调用时,它会被杀死,我再也看不到控制台日志了。我该怎么做才能看到它。
exit
换句话说,我正在调试应用程序,当发生不好的事情时,我在日志中放了一条消息,然后退出。我想看看发生那件事的地方。
选择所谓的“日志导航器”并选择调试会话,见图
如果您将exit呼叫替换为
raise(SIGINT);
如果您在附加调试器的情况下运行,程序的执行将暂停。如果您在没有调试器的情况下运行(即在生产中),该应用程序将被终止。