美文网首页
XCode里的Run,Test,Profile,Analyze

XCode里的Run,Test,Profile,Analyze

作者: _compass | 来源:发表于2018-10-12 15:50 被阅读77次

点击XCode中左上角三角符号,此符号的作用是:
Build and then run the current scheme.

Run,Test,Profile, Analyze的区别是:
•Run will build and run the target on the selected device or simulator.
•Test will build your target and run its unit tests (YourTargetNameTests.m)
•Profile will build and run your target on the selected device or simulator with an Instruments tool of your choosing (Leaks, Allocations, etc.)
•Analyze will build your target using the static analyzer and let you know of certain types of bugs in your code.

相关文章

网友评论

      本文标题:XCode里的Run,Test,Profile,Analyze

      本文链接:https://www.haomeiwen.com/subject/cbdgaftx.html