<?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: Simon says, MonoTouch downloading images like AppStore app in less than 50 lines with CoreAnimation Transitions!</title>
	<atom:link href="http://simon.nureality.ca/?feed=rss2&#038;p=211" rel="self" type="application/rss+xml" />
	<link>http://simon.nureality.ca/?p=211</link>
	<description>My phone is faster than my first PC, and faster than my first cable modem</description>
	<lastBuildDate>Sun, 16 May 2010 14:08:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Johnny Hughes</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-655</link>
		<dc:creator>Johnny Hughes</dc:creator>
		<pubDate>Fri, 08 Jan 2010 02:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-655</guid>
		<description>Is there a way to manually dispose the necessary objects instead of using NSAutoreleasePool?   
 
Also how are you finding the memory leak?  I have a leak which i believe to be related to UIImage or it&#039;s inner CGImage but I&#039;m not sure how to go about tracking it? 
 
Johnny </description>
		<content:encoded><![CDATA[<p>Is there a way to manually dispose the necessary objects instead of using NSAutoreleasePool?   </p>
<p>Also how are you finding the memory leak?  I have a leak which i believe to be related to UIImage or it&#039;s inner CGImage but I&#039;m not sure how to go about tracking it? </p>
<p>Johnny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Go iPhone</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-648</link>
		<dc:creator>Go iPhone</dc:creator>
		<pubDate>Mon, 04 Jan 2010 18:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-648</guid>
		<description>Figured it out after digging into different posts. The answer is to wrap RequestImage() with using (NSAutoreleasePool pool = new NSAutoreleasePool()) 
 
 
The code looks like this now, 
private void RequestImage(object state) 
{ 
 using (NSAutoreleasePool pool = new NSAutoreleasePool()) 
{ 
 
... 
 
} 
} 
 </description>
		<content:encoded><![CDATA[<p>Figured it out after digging into different posts. The answer is to wrap RequestImage() with using (NSAutoreleasePool pool = new NSAutoreleasePool()) </p>
<p>The code looks like this now,<br />
private void RequestImage(object state)<br />
{<br />
 using (NSAutoreleasePool pool = new NSAutoreleasePool())<br />
{ </p>
<p>&#8230; </p>
<p>}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Go iPhone</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-647</link>
		<dc:creator>Go iPhone</dc:creator>
		<pubDate>Mon, 04 Jan 2010 17:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-647</guid>
		<description>We just implemented image requests using the Simon&#039;s approach and both simulator and iPhone show &quot;...class UIImage autoreleased with no pool in place - just leaking&quot;. I have tried to use NsAutoReleasePool to wrap the call but no success. Any suggestions? 
 
Thanks </description>
		<content:encoded><![CDATA[<p>We just implemented image requests using the Simon&#039;s approach and both simulator and iPhone show &quot;&#8230;class UIImage autoreleased with no pool in place &#8211; just leaking&quot;. I have tried to use NsAutoReleasePool to wrap the call but no success. Any suggestions? </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemp</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-219</link>
		<dc:creator>hemp</dc:creator>
		<pubDate>Tue, 03 Nov 2009 02:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-219</guid>
		<description>When you say &quot;next version&quot; do you mean 1.2 (currently Beta 1) or some future version that is not yet available? </description>
		<content:encoded><![CDATA[<p>When you say &quot;next version&quot; do you mean 1.2 (currently Beta 1) or some future version that is not yet available?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gonzalo</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-215</link>
		<dc:creator>Gonzalo</dc:creator>
		<pubDate>Sun, 01 Nov 2009 16:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-215</guid>
		<description>I don&#039;t know if NsAutoReleasePool is required in Simon&#039;s case, but it won&#039;t be required in the next versin of MonoTouch since NSAutoReleasePoll will be dealt with in ThreadPool threads too. </description>
		<content:encoded><![CDATA[<p>I don&#039;t know if NsAutoReleasePool is required in Simon&#039;s case, but it won&#039;t be required in the next versin of MonoTouch since NSAutoReleasePoll will be dealt with in ThreadPool threads too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-210</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 31 Oct 2009 14:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-210</guid>
		<description>Nice post! 
 
Speculation -&gt; does the NS* code in RequestImage leak in your example? I think you need to wrap it in an NSAutoReleasePool unless you&#039;re on the main thread, where mt handles it for you. </description>
		<content:encoded><![CDATA[<p>Nice post! </p>
<p>Speculation -&gt; does the NS* code in RequestImage leak in your example? I think you need to wrap it in an NSAutoReleasePool unless you&#039;re on the main thread, where mt handles it for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnny</title>
		<link>http://simon.nureality.ca/?p=211&#038;cpage=1#comment-206</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Fri, 30 Oct 2009 00:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://simon.nureality.ca/?p=211#comment-206</guid>
		<description>Thanks, this is outside the scope of threading, but can you please elaborate on the RefreshImage method and why you need to deal with the animation methods? </description>
		<content:encoded><![CDATA[<p>Thanks, this is outside the scope of threading, but can you please elaborate on the RefreshImage method and why you need to deal with the animation methods?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
