17

Possible Duplicate:
Code linting for Objective C

Is there any lint tool for Objective-c?

Community
  • 1
  • 1
cfischer
  • 24,452
  • 37
  • 131
  • 214

1 Answers1

28

Xcode includes the Clang static analyzer, labeled as Build and Analyze (simply Analyze under Xcode 4).
http://clang-analyzer.llvm.org/xcode.html

Edit:

OCLint, based on Clang, provides additional checks of code style and complexity.
http://oclint.org

Justin
  • 20,509
  • 6
  • 47
  • 58