Is there a way to debug (iPhone) while running Leaks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:55:15Z http://stackoverflow.com/feeds/question/612964 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks 0 Is there a way to debug (iPhone) while running Leaks? 4thSpace 2009-03-04T23:25:16Z 2009-07-13T19:32:44Z <p>I'm running a debug build on the iPhone with Leaks. I'd like to break at certain points to see if particular leaks have occurred yet. This would allow me to narrow down where the leak is occurring by process of elimination. However, the debugger is ignored while Leaks is running. Any suggestions?</p> http://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks/614712#614712 0 Answer by Bdebeez for Is there a way to debug (iPhone) while running Leaks? Bdebeez 2009-03-05T13:17:08Z 2009-03-05T13:17:08Z <p>If you launch it in debug mode first (cmd-Y), you can then open Instruments and choose the Leaks template and attach to your running iPhone app process.</p> http://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks/874580#874580 0 Answer by bcd for Is there a way to debug (iPhone) while running Leaks? bcd 2009-05-17T13:05:29Z 2009-05-17T13:05:29Z <p>a quick way to do that: open Terminal.app, run "ps axwww | grep Simulator/User/Applications | grep -v grep" (without the quotes), the first number is the PID (process ID of your running application) and then run "leaks PID" (without the quotes and replace PID with the first number got with the previous command)</p> http://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks/1121583#1121583 0 Answer by Arrel for Is there a way to debug (iPhone) while running Leaks? Arrel 2009-07-13T19:32:44Z 2009-07-13T19:32:44Z <p>Run in debug mode as usual, then run Leaks separately. You can attach Leaks to the running app using the Default Target drop-down list at the top of the app's window. Just select the process that's the same name as your iPhone app (i.e. PushAndPop in the screenshot).</p> <p><img src="http://www.17feet.com/external/screen%5Fleaks.png" alt="Leaks screenshot" /></p>