tags:

views:

31

answers:

3

Hello everyone

Is there a way/tool to check memory leak of Cocoa Touch project? or I need to write the codes by myself.

Thanks

interdev

+3  A: 

In XCode, Run -> Run with Performance Tool -> Leaks.

KennyTM
A: 

Try running "top" in the terminal while your application is running and look for a memory allocation blowing up?

SpecialK
Agree with Martin and Kenny now -- I just learned something new, thanks!
SpecialK
+3  A: 

Instruments is your friend.

Martin Cote