Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code linting for Objective C

Are there any code linting tools for ObjectiveC?

like image 761
Himadri Choudhury Avatar asked Feb 18 '09 22:02

Himadri Choudhury


4 Answers

Have a look at the LLVM/Clang Static Analyzer

The LLVM/Clang static analyzer is a standalone tool that find bugs in C and Objective-C programs and it is very early in development.

A static analyzer based on clang. The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler.

Edit

Clang has now been integrated into Xcode and can easily be run as a menu option "Build & Analyse"

alt text

like image 199
epatel Avatar answered Nov 20 '22 18:11

epatel


It's worth mentioning OCLint too. It covers some things not touched by the Clang analyser, such as:

  • Complicated code - high cyclomatic complexity and NPath complexity
  • Code smells - long method, long parameter list, redundant code

Check out the home page for more details.

like image 38
occulus Avatar answered Nov 20 '22 17:11

occulus


I know it is an old question, but I will add another one static analysis tool here for the sake of completeness, Infer, from Facebook

You can see their home page, works with iOS and Android projects, and spare Obj-C/Java/C files

like image 5
webo80 Avatar answered Nov 20 '22 17:11

webo80


There is also the commercial tool FauxPas, which catches a lot of code smells, but also stuff like unused graphics, translation format argument mismatch, etc.

It’s not super cheap, but I‘m a happy user. There's a time-limited trial version available, which is fully functional, as far as I know.

like image 2
fzwo Avatar answered Nov 20 '22 18:11

fzwo