Has anyone come across a code analyzer that could be run on OS other than Mac to scan for Objective C (for iOS) code?
Asked
Active
Viewed 863 times
2
-
1[LLVM/Clang](http://stackoverflow.com/a/563259/3714897) – RoraΖ Dec 18 '14 at 14:33
-
I just noticed that Checkmarx is doing a pretty good job on Objective-C, too. FYI. – AviD Dec 29 '16 at 11:16
1 Answers
1
OCLint works on Linux and OSX. It doesn't focus on security, but integrates with Clang, a static code analyser to do style and security at the same time. Of course, if you don't care about style you can just use Clang to begin with! But if your code is tidy and readable, your security reviews will be a little less painful.
Agnito also scans objective-C, and it costs $0, just like the other tools.
(I am not affiliated with these projects.)
Ohnana
- 4,737
- 2
- 23
- 39