3

I am currently using OCLint, which can be integrated with XCode, but the format of the result has some problems. When the # of warning exceeds 200, it cannot be properly displayed.

What I want is more sophisticated code metrics, e.g. Cyclomatic complexity, afferent coupling, efferent coupling, NPath complexity and etc.

Ming Zhu
  • 272
  • 4
  • 13

1 Answers1

1

I think most people use the Clang Static Analyzer, which is quite good and already integrated into Xcode.

Chuck
  • 234,037
  • 30
  • 302
  • 389
  • 1
    what I want is more code metrics, e.g. cyclomatic complexity, afferent coupling, efferent coupling and etc. :) – Ming Zhu Nov 14 '13 at 21:54