Where is the memory leak detection tools in Xcode 4? Or how can I test for memory leaks in Xcode 4?
Asked
Active
Viewed 2,788 times
2 Answers
0
Go to Product -- > Analyze to check your program for memory leaks.

Hadi
- 1,212
- 2
- 17
- 31
-
1No - that just runs that static analyser over your code and points out potential problems. This brings up more problems than just memory leaks and is a good first start, but for real memory management you need to run Instruments on the app while it is running on the device. – Abizern Jun 17 '11 at 08:27