对于不想编译应用程序的人来说,是否有相当于工具的工具?
我不想每次想在仪器中测试我的应用程序时都编译它,是否有任何其他程序或方法可以利用此优势而不必每次都进行编译?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种工具比仪器更容易使用。该工具是 Clang 静态分析器。 网站介绍了如何安装和使用该工具集。它非常容易使用并且非常高效。我一直用它。
命令是:
使用起来非常简单,因为结果会显示在网络浏览器中!
希望这有帮助!
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:
It is really easy to use as the results come up in the web browser!
Hope this helps!