<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: The Objective-C Singleton</title>
	<atom:link href="http://getsetgames.com/2009/08/30/the-objective-c-singleton/feed/" rel="self" type="application/rss+xml" />
	<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 23:43:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Michael Sandercock</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-4534</link>
		<dc:creator>Michael Sandercock</dc:creator>
		<pubDate>Fri, 02 Mar 2012 20:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-4534</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shitian Long</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-4525</link>
		<dc:creator>Shitian Long</dc:creator>
		<pubDate>Sun, 26 Feb 2012 12:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-4525</guid>
		<description>Nice Tutorial </description>
		<content:encoded><![CDATA[<p>Nice Tutorial </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: singleton class memory leakage &#124; Software development support, software risk,bugs for bugs, risk analysis,</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-4336</link>
		<dc:creator>singleton class memory leakage &#124; Software development support, software risk,bugs for bugs, risk analysis,</dc:creator>
		<pubDate>Tue, 13 Dec 2011 04:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-4336</guid>
		<description>[...] = &quot;#000000&quot;; ch_color_bg = &quot;#FFFFFF&quot;;    I set up a singleton following the instructions at this tutorial, but when I analyze it I see the following memory [...]</description>
		<content:encoded><![CDATA[<p>[...] = &quot;#000000&quot;; ch_color_bg = &quot;#FFFFFF&quot;;    I set up a singleton following the instructions at this tutorial, but when I analyze it I see the following memory [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3729</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 25 Aug 2011 09:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3729</guid>
		<description>Excellent concise tutorial, thanks!
</description>
		<content:encoded><![CDATA[<p>Excellent concise tutorial, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutorial: SimpleAudioEngine &#124; Paw Apps</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3650</link>
		<dc:creator>Tutorial: SimpleAudioEngine &#124; Paw Apps</dc:creator>
		<pubDate>Fri, 29 Jul 2011 02:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3650</guid>
		<description>[...] class.  What is a singleton class you might be asking?  A good quick tutorial can be found here.  Basically it is a class that only gets instantiated once in an application.  They are very [...]</description>
		<content:encoded><![CDATA[<p>[...] class.  What is a singleton class you might be asking?  A good quick tutorial can be found here.  Basically it is a class that only gets instantiated once in an application.  They are very [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eos</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3637</link>
		<dc:creator>Eos</dc:creator>
		<pubDate>Tue, 26 Jul 2011 16:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3637</guid>
		<description>I was wondering how to do this, thank you!</description>
		<content:encoded><![CDATA[<p>I was wondering how to do this, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lee</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3485</link>
		<dc:creator>lee</dc:creator>
		<pubDate>Fri, 01 Jul 2011 02:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3485</guid>
		<description>sorry that formatting came out pretty badly. I&#039;ll try again:

Should be like this:[[MySingleton sharedMySingleton].QQQ objectAtIndex:0];


&quot;[MySingleton sharedMySingleton].QQQ&quot; evaluates to a pointer to QQQ so it&#039;s the same as:


NSArray *QQQ = [MySingleton sharedMySingleton].QQQ;

id *whatever = [QQQ objectAtIndex:0];</description>
		<content:encoded><![CDATA[<p>sorry that formatting came out pretty badly. I&#8217;ll try again:</p>
<p>Should be like this:[[MySingleton sharedMySingleton].QQQ objectAtIndex:0];</p>
<p>&#8220;[MySingleton sharedMySingleton].QQQ&#8221; evaluates to a pointer to QQQ so it&#8217;s the same as:</p>
<p>NSArray *QQQ = [MySingleton sharedMySingleton].QQQ;</p>
<p>id *whatever = [QQQ objectAtIndex:0];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lee</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3484</link>
		<dc:creator>lee</dc:creator>
		<pubDate>Fri, 01 Jul 2011 02:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3484</guid>
		<description>Should be like this:[[MySingleton sharedMySingleton].QQQ objectAtIndex:0];&quot;[MySingleton sharedMySingleton].QQQ&quot; evaluates to a pointer to QQQ so it&#039;s the same as:NSArray *QQQ = [MySingleton sharedMySingleton].QQQ;id *whatever = [QQQ objectAtIndex:0];</description>
		<content:encoded><![CDATA[<p>Should be like this:[[MySingleton sharedMySingleton].QQQ objectAtIndex:0];&#8221;[MySingleton sharedMySingleton].QQQ&#8221; evaluates to a pointer to QQQ so it&#8217;s the same as:NSArray *QQQ = [MySingleton sharedMySingleton].QQQ;id *whatever = [QQQ objectAtIndex:0];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toygar</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3392</link>
		<dc:creator>toygar</dc:creator>
		<pubDate>Tue, 31 May 2011 11:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3392</guid>
		<description>fine thanks</description>
		<content:encoded><![CDATA[<p>fine thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Singleton en Objective-c &#124; Guerratopia</title>
		<link>http://getsetgames.com/2009/08/30/the-objective-c-singleton/comment-page-1/#comment-3368</link>
		<dc:creator>Singleton en Objective-c &#124; Guerratopia</dc:creator>
		<pubDate>Tue, 24 May 2011 20:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://getsetgames.com/?p=269#comment-3368</guid>
		<description>[...] del Post : getsetgames   This entry was posted in Apple, iPad, iPhone, Mac, Objective-C by Guerrix. Bookmark the [...]</description>
		<content:encoded><![CDATA[<p>[...] del Post : getsetgames   This entry was posted in Apple, iPad, iPhone, Mac, Objective-C by Guerrix. Bookmark the [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

