对于不想编译应用程序的人来说,是否有相当于工具的工具?

发布于 2024-08-16 04:12:21 字数 61 浏览 6 评论 0原文

我不想每次想在仪器中测试我的应用程序时都编译它,是否有任何其他程序或方法可以利用此优势而不必每次都进行编译?

I don't want to compile my app every-time I want to test it in instruments is there any other program or way of utilizing this benefit without having to compile every-time?

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

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

发布评论

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

评论(1

々眼睛长脚气 2024-08-23 04:12:21

有一种工具比仪器更容易使用。该工具是 Clang 静态分析器。 网站介绍了如何安装和使用该工具集。它非常容易使用并且非常高效。我一直用它。

命令是:

xcodebuild clean
scan-build -k -V xcodebuild

使用起来非常简单,因为结果会显示在网络浏览器中!

希望这有帮助!

There is a tool that is much easier to use than the Instruments. The tool is the Clang Static Analyzer. The website describes how to install and use the tool set. It is so easy to use and very efficient. I use it all the time.

The commands are:

xcodebuild clean
scan-build -k -V xcodebuild

It is really easy to use as the results come up in the web browser!

Hope this helps!

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