发布模式下捕获NSLog

发布于 2024-10-20 09:54:06 字数 159 浏览 5 评论 0原文


我的应用程序,在发布和调试模式下也运行良好,如果我通过 XCode 运行, 但如果我双击应用程序,那么它会在同一个地方崩溃,但我无法继续, 如果我在 XCode 环境之外运行我的应用程序,有什么方法可以捕获 NSLog,或者任何其他指针来分析崩溃。

亲切的问候
罗汉

My Application, running fine in Release and debug mode as well, if i run thru XCode,
but if i double click on Application, then its crashing at the same place, but i couldn’t able to proceeds,
Is there any way to Capture the NSLog if i am running my application outside XCode environment, or any other pointer to analyze the crash.

Kind Regards
Rohan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

桃扇骨 2024-10-27 09:54:06

GDB,苹果调试器。

只需启动终端并输入:

gdb -q path-to-your-application

加载后按 r 即可启动您的应用程序。

希望有帮助

GDB, the apple debugger.

Just start the terminal and type in:

gdb -q path-to-your-application

When it has loaded press r in order to start your application.

Hope that helps

赢得她心 2024-10-27 09:54:06

NSLog 输出将发送至 stdout,对于从 Finder 启动的应用程序,该输出将发送至控制台。换句话说,查看 Console.app。

NSLog output goes to stdout, which goes to Console for applications launched from the Finder. In other words, look in Console.app.

仙女 2024-10-27 09:54:06

您可以将对 NSLog() 的调用替换为对您自己的函数的调用,该函数将输出写入您指定的位置,并且还可以选择调用 NSLog() 来转储输出到控制台。

You could replace calls to NSLog() with calls to your own function that writes the output to a location that you specify, and optionally also calls NSLog() to dump the output to the console.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文