Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lint for Objective-C? [duplicate]

Possible Duplicate:
Code linting for Objective C

Is there any lint tool for Objective-c?

like image 383
cfischer Avatar asked Oct 13 '10 18:10

cfischer


1 Answers

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

like image 122
Justin Avatar answered Oct 03 '22 07:10

Justin