发布模式下捕获NSLog
我的应用程序,在发布和调试模式下也运行良好,如果我通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GDB,苹果调试器。
只需启动终端并输入:
加载后按 r 即可启动您的应用程序。
希望有帮助
GDB, the apple debugger.
Just start the terminal and type in:
When it has loaded press r in order to start your application.
Hope that helps
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.
您可以将对
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 callsNSLog()
to dump the output to the console.