Using OCLint in Xcode

来源:互联网 发布:2017年黄金周旅游数据 编辑:程序博客网 时间:2024/06/05 07:07

原文链接: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.

Prerequisite¶

  • oclint-xcodebuild Manual
  • Apple’s official xcodebuild Manual Page
  • Using OCLint with xcodebuild

or

  • Using OCLint with xctool

or

  • Using OCLint with xcpretty

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.
../_images/xcode_screenshot_1.png
  • 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.
../_images/xcode_screenshot_2.png
  • Add a new build phase in the target we just created. Choose Add Run Script for the phase type.
../_images/xcode_screenshot_3.png
  • 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.
../_images/xcode_screenshot_4.png

Running Analysis¶

  • Choose the correct build scheme, here we choose OCLint.
../_images/xcode_screenshot_6.png
  • 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.
../_images/xcode_screenshot_8.png

0 0
原创粉丝点击