<?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: Objective-C: What is .m?</title>
	<atom:link href="http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html</link>
	<description>My thoughts and ramblings</description>
	<lastBuildDate>Tue, 20 Jul 2010 19:10:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: John C. Bland II</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-2456</link>
		<dc:creator>John C. Bland II</dc:creator>
		<pubDate>Tue, 09 Jun 2009 08:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-2456</guid>
		<description>No sweat.</description>
		<content:encoded><![CDATA[<p>No sweat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John C. Bland II</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-2455</link>
		<dc:creator>John C. Bland II</dc:creator>
		<pubDate>Tue, 09 Jun 2009 08:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-2455</guid>
		<description>I&#039;ve been living in about 4 other languages comfortably. Objective-C had 0 appeal until recently. Heck...I just bought my first Mac in October 09. ;-)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been living in about 4 other languages comfortably. Objective-C had 0 appeal until recently. Heck&#8230;I just bought my first Mac in October 09. <img src='http://www.johncblandii.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy V</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-2376</link>
		<dc:creator>Jimmy V</dc:creator>
		<pubDate>Thu, 04 Jun 2009 18:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-2376</guid>
		<description>It is 2009 and you are just now writing about objective C?  Where have you been for the past several years.</description>
		<content:encoded><![CDATA[<p>It is 2009 and you are just now writing about objective C?  Where have you been for the past several years.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FredJouldd</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-2128</link>
		<dc:creator>FredJouldd</dc:creator>
		<pubDate>Thu, 28 May 2009 18:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-2128</guid>
		<description>Thanks, good article.</description>
		<content:encoded><![CDATA[<p>Thanks, good article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John C. Bland II</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-1768</link>
		<dc:creator>John C. Bland II</dc:creator>
		<pubDate>Wed, 20 May 2009 05:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-1768</guid>
		<description>@bbum
Good stuff. Thanks for providing more clarity.

I have a blog post coming up about @synthesize. It is interesting and I want to learn more about it.</description>
		<content:encoded><![CDATA[<p>@bbum<br />
Good stuff. Thanks for providing more clarity.</p>
<p>I have a blog post coming up about @synthesize. It is interesting and I want to learn more about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bbum</title>
		<link>http://www.johncblandii.com/index.php/2009/05/objective-c-what-is-m.html/comment-page-1#comment-1619</link>
		<dc:creator>bbum</dc:creator>
		<pubDate>Sat, 16 May 2009 02:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.johncblandii.com/?p=312#comment-1619</guid>
		<description>Or you can think of it terms of object oriented encapsulation.

The .h file contains the public facing interface for your class;  all the stuff that you expect folks using your code to see and understand.

The .m file contains all the implementation details of your class;  all the stuff that you might change at a whim as long as it doesn&#039;t change the meaning of something in the .h.

.m files can contain more than @implementations, they can contain private interfaces, too.  And on the iPhone or 64 bit Mac OS X runtimes, they can implement private instance variables through class extensions and @synthesize.</description>
		<content:encoded><![CDATA[<p>Or you can think of it terms of object oriented encapsulation.</p>
<p>The .h file contains the public facing interface for your class;  all the stuff that you expect folks using your code to see and understand.</p>
<p>The .m file contains all the implementation details of your class;  all the stuff that you might change at a whim as long as it doesn&#8217;t change the meaning of something in the .h.</p>
<p>.m files can contain more than @implementations, they can contain private interfaces, too.  And on the iPhone or 64 bit Mac OS X runtimes, they can implement private instance variables through class extensions and @synthesize.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
