<?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: Cocoa Tutorial: Creating your very own framework</title>
	<atom:link href="http://www.cimgf.com/2008/09/04/cocoa-tutorial-creating-your-very-own-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cimgf.com/2008/09/04/cocoa-tutorial-creating-your-very-own-framework/</link>
	<description>Taglines are for Windows programmers</description>
	<lastBuildDate>Mon, 26 Jul 2010 16:50:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: stompy</title>
		<link>http://www.cimgf.com/2008/09/04/cocoa-tutorial-creating-your-very-own-framework/comment-page-1/#comment-800</link>
		<dc:creator>stompy</dc:creator>
		<pubDate>Thu, 04 Sep 2008 21:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.cimgf.com/?p=229#comment-800</guid>
		<description>&lt;p&gt;For a hands on tutorial: Uli Kusterer has a video available from the Mac Developer Network:&lt;/p&gt;

&lt;p&gt;http://www.mac-developer-network.com/videocourses/frameworks/index.html&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>For a hands on tutorial: Uli Kusterer has a video available from the Mac Developer Network:</p>

<p><a href="http://www.mac-developer-network.com/videocourses/frameworks/index.html" rel="nofollow">http://www.mac-developer-network.com/videocourses/frameworks/index.html</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: benzado</title>
		<link>http://www.cimgf.com/2008/09/04/cocoa-tutorial-creating-your-very-own-framework/comment-page-1/#comment-799</link>
		<dc:creator>benzado</dc:creator>
		<pubDate>Thu, 04 Sep 2008 19:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cimgf.com/?p=229#comment-799</guid>
		<description>&lt;p&gt;You don&#039;t have to throw away type checking just because you don&#039;t want to expose a class.  You can use the @class directive to declare the existence of an Objective-C class without exposing the whole interface.  For example:&lt;/p&gt;

&lt;p&gt;@class InternalObject;&lt;/p&gt;

&lt;p&gt;@interface AbstractExample : NSObject {
   InternalObject *object;
}&lt;/p&gt;

&lt;p&gt;If you do this, you don&#039;t have to expose the &quot;InternalObject.h&quot; file.  Granted, somebody reading your header files will know of the existence of InternalObject, but giving up type checking to keep the class name a secret is kind of petty.&lt;/p&gt;

&lt;p&gt;I use @class in all of my header files; the only time a header needs to include the header of another class is when it is a subclass of that other class.&lt;/p&gt;

&lt;p&gt;(P.S. Logging in with openid doesn&#039;t seem to work.)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You don&#8217;t have to throw away type checking just because you don&#8217;t want to expose a class.  You can use the @class directive to declare the existence of an Objective-C class without exposing the whole interface.  For example:</p>

<p>@class InternalObject;</p>

<p>@interface AbstractExample : NSObject {
   InternalObject *object;
}</p>

<p>If you do this, you don&#8217;t have to expose the &#8220;InternalObject.h&#8221; file.  Granted, somebody reading your header files will know of the existence of InternalObject, but giving up type checking to keep the class name a secret is kind of petty.</p>

<p>I use @class in all of my header files; the only time a header needs to include the header of another class is when it is a subclass of that other class.</p>

<p>(P.S. Logging in with openid doesn&#8217;t seem to work.)</p>]]></content:encoded>
	</item>
</channel>
</rss>
