将 Intruments 跟踪文件与 Xcode 项目连接起来

发布于 2024-11-08 05:36:39 字数 109 浏览 2 评论 0原文

我的同事发现了我没有看到的泄漏。所以他向我发送了显示泄漏的跟踪文件。 我想知道如何将该跟踪与我的 xcode 项目连接起来?所以当我可以在我的项目中看到部分代码时。这可能吗?

提前致谢。

My colleague found a leak I don't see. So he sent me the trace file showing the leak.
I wonder how can I hook up that trace with my xcode project? so when I can see the part of the code in my project. Is this possible?

Thanks in advance.

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

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

发布评论

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

评论(1

So尛奶瓶 2024-11-15 05:36:39

我不知道您使用的是哪个版本的 Xcode,但以下内容将测试是否可以使用 Xcode 4 附带的 Instruments 版本打开您的 Xcode 项目:

切换到跟踪文件中的调用树。在调用树中找到程序的方法之一。双击该方法。跟踪文档窗口应显示该方法的源代码。源代码上方是一组四个按钮。

Instruments 源视图按钮

单击带有 Xcode 图标的按钮应在 Xcode 中打开该文件。您可能希望在单击按钮之前打开 Xcode 项目。

如果双击调用树中的方法时看不到任何源代码,则应尝试创建源树。源代码树允许多人访问 Xcode 项目中的文件。通过创建源树,您的同事和您将访问相同的文件,这将增加将跟踪文件连接到您的 Xcode 项目的机会。

I don't know what version of Xcode you're using, but the following will test if it's possible to open your Xcode project with the version of Instruments that ships with Xcode 4:

Switch to the call tree in the trace file. Find one of your program's methods in the call tree. Double-click the method. The trace document window should show the method's source code. Above the source code is a set of four buttons.

Instruments source view buttons

Clicking the button with the Xcode icon should open the file in Xcode. You may want to have your Xcode project open before you click the button.

If you can't see any source code when you double-click the method in the call tree, you should try creating a source tree. A source tree lets multiple people access the files in an Xcode project. By creating a source tree your colleague and you would be accessing the same files, which would increase the chances of being able to connect the trace file to your Xcode project.

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