在仪器中看不到堆栈跟踪
我正在使用 Instruments 来查找 iPhone 应用程序中的内存泄漏。 我在应用程序中看到了一些泄漏,但是扩展详细信息视图没有显示堆栈跟踪。 它只是说“此块没有可用的堆栈跟踪”。
我确信我错过了一些导致此行为的设置。 任何帮助将不胜感激!
谢谢 水壶
I am using Instruments to find memory leaks in my iPhone application. I saw a few leaks in the application however the extended details view is not showing the stacktrace. It just says "No stack trace available for this block".
I am sure I have missed some settings which resulted in this behavior. Any help would be greatly appreciated!
Thanks
Jugs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查找泄漏和其他编码语义问题的另一种方法是 Clang 静态分析器,可以在代码中找到它
http://clang-analyzer.llvm.org/
希望能为您找到漏洞
Another method for finding leaks and other coding semantic problems is the Clang static analyzer which can be found here over your code
http://clang-analyzer.llvm.org/
Hopefully will find the leak for you