<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: iPhone Memory Debugging with NSZombie and Instruments</title>
	<atom:link href="http://www.markj.net/iphone-memory-debug-nszombie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markj.net/iphone-memory-debug-nszombie/</link>
	<description>iPhone App Development &#38; Consulting</description>
	<lastBuildDate>Sat, 31 Jul 2010 13:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John</title>
		<link>http://www.markj.net/iphone-memory-debug-nszombie/comment-page-1/#comment-2285</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 23 Jul 2010 21:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.markj.net/?p=599#comment-2285</guid>
		<description>Hi everyone

I tried to following the instruction to use NSZombie..  It doesn&#039;t seem to work on my Xcode.

I am a brand new programming in Objective C.    I even have a new environment variable NSZombieEnabled  in arguments section for the Executables.
 The choice  ‘Enable NSZombie’ Detection did not show up in my Instrument.  I wonder what&#039;s going on?  

i.e. I am not allowed to enable NSZombie detection?  
Any help will be greatly appreciated!

John</description>
		<content:encoded><![CDATA[<p>Hi everyone</p>
<p>I tried to following the instruction to use NSZombie..  It doesn&#8217;t seem to work on my Xcode.</p>
<p>I am a brand new programming in Objective C.    I even have a new environment variable NSZombieEnabled  in arguments section for the Executables.<br />
 The choice  ‘Enable NSZombie’ Detection did not show up in my Instrument.  I wonder what&#8217;s going on?  </p>
<p>i.e. I am not allowed to enable NSZombie detection?<br />
Any help will be greatly appreciated!</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Z@K!</title>
		<link>http://www.markj.net/iphone-memory-debug-nszombie/comment-page-1/#comment-2264</link>
		<dc:creator>Z@K!</dc:creator>
		<pubDate>Sat, 03 Jul 2010 19:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.markj.net/?p=599#comment-2264</guid>
		<description>Does this still work in instruments v.2.7 (2529)? I did not have a checkbox for &quot;Enable NSZombie detection&quot;...

Thanks,
Zak</description>
		<content:encoded><![CDATA[<p>Does this still work in instruments v.2.7 (2529)? I did not have a checkbox for &#8220;Enable NSZombie detection&#8221;&#8230;</p>
<p>Thanks,<br />
Zak</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ferenc</title>
		<link>http://www.markj.net/iphone-memory-debug-nszombie/comment-page-1/#comment-2237</link>
		<dc:creator>ferenc</dc:creator>
		<pubDate>Fri, 28 May 2010 01:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.markj.net/?p=599#comment-2237</guid>
		<description>nice one!
why i had this simple bug ;)
what should be done if the unnecessary release actually happens in [super dealloc] (super is a UIView)?

well anyway thanks for the eyeopening video!!</description>
		<content:encoded><![CDATA[<p>nice one!<br />
why i had this simple bug ;)<br />
what should be done if the unnecessary release actually happens in [super dealloc] (super is a UIView)?</p>
<p>well anyway thanks for the eyeopening video!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham</title>
		<link>http://www.markj.net/iphone-memory-debug-nszombie/comment-page-1/#comment-2227</link>
		<dc:creator>Graham</dc:creator>
		<pubDate>Sun, 16 May 2010 11:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.markj.net/?p=599#comment-2227</guid>
		<description>Well, after trying many different ways, and on two instances of &quot;EXC_BAD_ACCESS&quot; I do not get the &quot;Zombie Messaged&quot; popup that you get, I can set &quot;Record reference counts&quot; and &quot;Enable NSZombie Detection&quot; but mine just runs, the instrument starts recording, then just quits with recording stopped.

Sigh.  Any thoughts?</description>
		<content:encoded><![CDATA[<p>Well, after trying many different ways, and on two instances of &#8220;EXC_BAD_ACCESS&#8221; I do not get the &#8220;Zombie Messaged&#8221; popup that you get, I can set &#8220;Record reference counts&#8221; and &#8220;Enable NSZombie Detection&#8221; but mine just runs, the instrument starts recording, then just quits with recording stopped.</p>
<p>Sigh.  Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pythic BV</title>
		<link>http://www.markj.net/iphone-memory-debug-nszombie/comment-page-1/#comment-2208</link>
		<dc:creator>Pythic BV</dc:creator>
		<pubDate>Thu, 29 Apr 2010 20:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.markj.net/?p=599#comment-2208</guid>
		<description>Awesome! I just spent two whole evenings tracking down the release of an object ... 

I&#039;m quite a xcode n00b but seems that lStr = [lStr stringByAppendingString:@&quot;,&quot;] is not keeping the lStr original settings like retain :( 

lStr = [lStr stringByAppendingString:@&quot;,&quot;] retain];  fixed my problem . Not sure if this is the correct way to fix it , but for now it works .. 

Thanks again !!</description>
		<content:encoded><![CDATA[<p>Awesome! I just spent two whole evenings tracking down the release of an object &#8230; </p>
<p>I&#8217;m quite a xcode n00b but seems that lStr = [lStr stringByAppendingString:@","] is not keeping the lStr original settings like retain :( </p>
<p>lStr = [lStr stringByAppendingString:@","] retain];  fixed my problem . Not sure if this is the correct way to fix it , but for now it works .. </p>
<p>Thanks again !!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
