<?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 SDK Development Tutorial #2 &#8211; Transitioning To Objective-C</title>
	<atom:link href="http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/</link>
	<description>ManiacDev.Com</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:29:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: John</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-63</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 05 May 2009 22:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-63</guid>
		<description>Yeah, cheatsheets can definitely make things alot easier, if you&#039;re familiar with C/C++/Java you really shouldn&#039;t have any problems.  While Objective-C definitely looks weird, it&#039;s got more in common with C/C++/and Java than it has differences.</description>
		<content:encoded><![CDATA[<p>Yeah, cheatsheets can definitely make things alot easier, if you&#39;re familiar with C/C++/Java you really shouldn&#39;t have any problems.  While Objective-C definitely looks weird, it&#39;s got more in common with C/C++/and Java than it has differences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-48</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 24 Apr 2009 22:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-48</guid>
		<description>Hi Patty,
When you create a static (or class) method it is not created when you make an object.  It belongs to the class, and the same memory location in memory containing that class is used by all objects, and you can use it directly from the class without even creating an object.. like you can run it as [ClassName staticMethod] rather than [objectName staticMethod].

Non-static means that with every object you create that method a different method is created in memory, and you run them usinh [objectName staticMethod].

In Objective-C from what I understand technically the methods are always placed in static, but I mentioned it being similar to the word static, as that is the terminology used in C/C++/Java and the behavior of the +/- modifiers you see at the start of a method cause the behaviour to be similar.

Hope I didn&#039;t confuse you more!</description>
		<content:encoded><![CDATA[<p>Hi Patty,<br />
When you create a static (or class) method it is not created when you make an object.  It belongs to the class, and the same memory location in memory containing that class is used by all objects, and you can use it directly from the class without even creating an object.. like you can run it as [ClassName staticMethod] rather than [objectName staticMethod].</p>
<p>Non-static means that with every object you create that method a different method is created in memory, and you run them usinh [objectName staticMethod].</p>
<p>In Objective-C from what I understand technically the methods are always placed in static, but I mentioned it being similar to the word static, as that is the terminology used in C/C++/Java and the behavior of the +/- modifiers you see at the start of a method cause the behaviour to be similar.</p>
<p>Hope I didn&#8217;t confuse you more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-6962</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 24 Apr 2009 22:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-6962</guid>
		<description>Hi Patty,
When you create a static (or class) method it is not created when you make an object.  It belongs to the class, and the same memory location in memory containing that class is used by all objects, and you can use it directly from the class without even creating an object.. like you can run it as [ClassName staticMethod] rather than [objectName staticMethod].

Non-static means that with every object you create that method a different method is created in memory, and you run them usinh [objectName staticMethod].

In Objective-C from what I understand technically the methods are always placed in static, but I mentioned it being similar to the word static, as that is the terminology used in C/C++/Java and the behavior of the +/- modifiers you see at the start of a method cause the behaviour to be similar.

Hope I didn&#039;t confuse you more!</description>
		<content:encoded><![CDATA[<p>Hi Patty,<br />
When you create a static (or class) method it is not created when you make an object.  It belongs to the class, and the same memory location in memory containing that class is used by all objects, and you can use it directly from the class without even creating an object.. like you can run it as [ClassName staticMethod] rather than [objectName staticMethod].</p>
<p>Non-static means that with every object you create that method a different method is created in memory, and you run them usinh [objectName staticMethod].</p>
<p>In Objective-C from what I understand technically the methods are always placed in static, but I mentioned it being similar to the word static, as that is the terminology used in C/C++/Java and the behavior of the +/- modifiers you see at the start of a method cause the behaviour to be similar.</p>
<p>Hope I didn&#8217;t confuse you more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patty</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-46</link>
		<dc:creator>Patty</dc:creator>
		<pubDate>Fri, 24 Apr 2009 04:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-46</guid>
		<description>The proceeding &quot;+&quot; and &quot;-&quot; just means &quot;static&quot; and &quot;non-static&quot;?

What does that mean?</description>
		<content:encoded><![CDATA[<p>The proceeding &#8220;+&#8221; and &#8220;-&#8221; just means &#8220;static&#8221; and &#8220;non-static&#8221;?</p>
<p>What does that mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patty</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-6961</link>
		<dc:creator>Patty</dc:creator>
		<pubDate>Fri, 24 Apr 2009 04:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-6961</guid>
		<description>The proceeding &quot;+&quot; and &quot;-&quot; just means &quot;static&quot; and &quot;non-static&quot;?

What does that mean?</description>
		<content:encoded><![CDATA[<p>The proceeding &#8220;+&#8221; and &#8220;-&#8221; just means &#8220;static&#8221; and &#8220;non-static&#8221;?</p>
<p>What does that mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Ultimate iPhone Objective-C Cheat Sheet &#124; maniacdev.com</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-24</link>
		<dc:creator>The Ultimate iPhone Objective-C Cheat Sheet &#124; maniacdev.com</dc:creator>
		<pubDate>Tue, 14 Apr 2009 21:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-24</guid>
		<description>[...] the iPhone Objective-C 2.0 Cheat Sheet Today which I created earlier to accompany my video on transitioning to Objective-C.  Please watch this video if you are new to Objective-C as I explain things in more detail during [...]</description>
		<content:encoded><![CDATA[<p>[...] the iPhone Objective-C 2.0 Cheat Sheet Today which I created earlier to accompany my video on transitioning to Objective-C.  Please watch this video if you are new to Objective-C as I explain things in more detail during [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-6960</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 13 Apr 2009 20:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-6960</guid>
		<description>Thankyou for pointing that out Shashank, I have fixed the link.  The error was created when I changed the blog theme.</description>
		<content:encoded><![CDATA[<p>Thankyou for pointing that out Shashank, I have fixed the link.  The error was created when I changed the blog theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shashank</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-6959</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Mon, 13 Apr 2009 07:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-6959</guid>
		<description>The CheatSheet URL returns a PAGE NOT FOUND, can you please provide the correct URL ?</description>
		<content:encoded><![CDATA[<p>The CheatSheet URL returns a PAGE NOT FOUND, can you please provide the correct URL ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-17</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 08 Apr 2009 01:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-17</guid>
		<description>Yeah, cheatsheets can definitely make things alot easier, if you&#039;re familiar with C/C++/Java you really shouldn&#039;t have any problems.  While Objective-C definitely looks weird, it&#039;s got more in common with C/C++/and Java than it has differences.</description>
		<content:encoded><![CDATA[<p>Yeah, cheatsheets can definitely make things alot easier, if you&#8217;re familiar with C/C++/Java you really shouldn&#8217;t have any problems.  While Objective-C definitely looks weird, it&#8217;s got more in common with C/C++/and Java than it has differences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnnysR</title>
		<link>http://maniacdev.com/2009/03/iphone-sdk-development-tutorial-2-transitioning-to-objective-c/comment-page-1/#comment-15</link>
		<dc:creator>JohnnysR</dc:creator>
		<pubDate>Sun, 05 Apr 2009 20:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://maniacdev.com/?p=15#comment-15</guid>
		<description>Keep up the good work! I&#039;m waiting for the next tutorial :)
I&#039;m familiar with c, c++ &amp; Java but objective-c gave me a hard time the first time I saw it. With your video and cheatsheet everything seems much easier.

Thanks</description>
		<content:encoded><![CDATA[<p>Keep up the good work! I&#8217;m waiting for the next tutorial <img src='http://maniacdev.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I&#8217;m familiar with c, c++ &amp; Java but objective-c gave me a hard time the first time I saw it. With your video and cheatsheet everything seems much easier.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

