Is there a way to debug (iPhone) while running Leaks? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T18:55:15Zhttp://stackoverflow.com/feeds/question/612964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks0Is there a way to debug (iPhone) while running Leaks?4thSpace2009-03-04T23:25:16Z2009-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#6147120Answer by Bdebeez for Is there a way to debug (iPhone) while running Leaks?Bdebeez2009-03-05T13:17:08Z2009-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#8745800Answer by bcd for Is there a way to debug (iPhone) while running Leaks?bcd2009-05-17T13:05:29Z2009-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#11215830Answer by Arrel for Is there a way to debug (iPhone) while running Leaks?Arrel2009-07-13T19:32:44Z2009-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>