Using OCLint in Xcode

原文链接:http://docs.oclint.org/en/stable/guide/xcode.html#


非常详细的文章,能够在xcode中看到不规范代码提示,方便简洁,感谢作者。

Using OCLint in Xcode

This document shows one solution of using OCLint to analyze the code quality of a Xcode project.

Background

This idea was originally posted in this blog. We hope to share it with more developers, and hope to motivate more ideas.

Setting up Target

  • Add a new target in the project, and choose Aggregate as the template.
Using OCLint in Xcode
  • Name the new target, here we simply call it “OCLint”, you could have more than one targets that focus on different aspects of the code analysis.
Using OCLint in Xcode
  • Add a new build phase in the target we just created. Choose Add Run Script for the phase type.
Using OCLint in Xcode
  • In the script editor, we could enter the script which does the real work. We can also modify the script from this very generic version and its folks. We may need to change the xcodebuild options to use a particular scheme or target. In addition, based on the discussions we had, we can decide whether to use clean and dry runfeatures.
  • For xctool users, the script can be largely simplified to something like this.
  • For xcpretty users, the script is also much simplier, check it out from this gist.
Using OCLint in Xcode

Running Analysis

  • Choose the correct build scheme, here we choose OCLint.
Using OCLint in Xcode
  • Click to build, or use the shortcut Command+B.
  • When the progress bar scrolls to the very right, the analysis is done, then we can check out the analysis results same as compile warnings.
Using OCLint in Xcode