When I use the Build and Analyze option in Xcode, I see a very useful visual output integrated into the IDE, showing code paths, memory leaks, dead storage, etc.
Xcode has an assembly parameter that allows you to run a static analyzer (clang) as part of each assembly. But when I do this, the output consists of simple plist files in the build folder.
Is there a way to generate rendered HTML output from these plist files?
source share