I am making a drawing application and I want make my code more readable and more efficient in the sense that I want the code to end up being faster and more responsive and lightweight. If you could lead this noob in the right direction then that would be wonderful.
Share
I would recommend using Clang Static Analyzer to check your code for leaks. It is easier than the Instruments tools and very efficient. Apple includes Clang Static Analyzer with Xcode now on Snow Leopard. You can download it and use it on Leopard is easy.
The Clang Static Analyzer website has the binary and instructions. To use it you navigate to your source directory and run two commands:
The results come up in a web browser. It helps you write very efficient code.
Hope this helps!