<?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: Private Properties</title>
	<atom:link href="http://www.theflyingjalapenolives.com/2009/07/private-properties/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/</link>
	<description>injuries sustained turning indy</description>
	<lastBuildDate>Tue, 31 Aug 2010 23:07:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Corey</title>
		<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/comment-page-1/#comment-190</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Thu, 16 Jul 2009 19:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.theflyingjalapenolives.com/?p=459#comment-190</guid>
		<description>@Chris Yes you can, but using KVO seems even easier to me than implementing the setter. This was one of the reasons that properties were made, to stop us coders from writing error prone getters and setters. You can always choose the method that works best. I use KVO since it protects me from myself.</description>
		<content:encoded><![CDATA[<p>@Chris Yes you can, but using KVO seems even easier to me than implementing the setter. This was one of the reasons that properties were made, to stop us coders from writing error prone getters and setters. You can always choose the method that works best. I use KVO since it protects me from myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey</title>
		<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/comment-page-1/#comment-189</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Thu, 16 Jul 2009 19:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.theflyingjalapenolives.com/?p=459#comment-189</guid>
		<description>@Matt 
I like the brackets aesthetically, it is just when you forget one that bothers me. I did install &lt;a href=&quot;http://github.com/ciaran/xcode-bracket-matcher/tree/master&quot; rel=&quot;nofollow&quot;&gt;Bracket Matcher&lt;/a&gt; which helps, but you still lose some code sense. 

@Arne
I didn&#039;t use Objective-C too much before 2.0, so dot syntax doesn&#039;t really look out of place to me. In fact &lt;em&gt;all&lt;/em&gt; of Objective-C was very  &quot;alien&quot; to me at first. As with anything, I think that over time you get used to it.</description>
		<content:encoded><![CDATA[<p>@Matt<br />
I like the brackets aesthetically, it is just when you forget one that bothers me. I did install <a href="http://github.com/ciaran/xcode-bracket-matcher/tree/master" rel="nofollow">Bracket Matcher</a> which helps, but you still lose some code sense. </p>
<p>@Arne<br />
I didn&#8217;t use Objective-C too much before 2.0, so dot syntax doesn&#8217;t really look out of place to me. In fact <em>all</em> of Objective-C was very  &#8220;alien&#8221; to me at first. As with anything, I think that over time you get used to it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Ryland</title>
		<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/comment-page-1/#comment-188</link>
		<dc:creator>Chris Ryland</dc:creator>
		<pubDate>Thu, 16 Jul 2009 19:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.theflyingjalapenolives.com/?p=459#comment-188</guid>
		<description>&quot;Another issue is w hen you need to react to state changes of an ivar. This can be mitigated using KVO.&quot;

Can&#039;t you simply implement the setter method and handle it right when it changes?</description>
		<content:encoded><![CDATA[<p>&#8220;Another issue is w hen you need to react to state changes of an ivar. This can be mitigated using KVO.&#8221;</p>
<p>Can&#8217;t you simply implement the setter method and handle it right when it changes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arne</title>
		<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/comment-page-1/#comment-187</link>
		<dc:creator>Arne</dc:creator>
		<pubDate>Thu, 16 Jul 2009 12:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.theflyingjalapenolives.com/?p=459#comment-187</guid>
		<description>Personally, I really like the dot-syntax for properties. The convenience of visually separating properties from method-calls outweighs the slightly alien look of the dot-syntax in obj-c 2.0 :)</description>
		<content:encoded><![CDATA[<p>Personally, I really like the dot-syntax for properties. The convenience of visually separating properties from method-calls outweighs the slightly alien look of the dot-syntax in obj-c 2.0 <img src='http://www.theflyingjalapenolives.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MattjDrake</title>
		<link>http://www.theflyingjalapenolives.com/2009/07/private-properties/comment-page-1/#comment-186</link>
		<dc:creator>MattjDrake</dc:creator>
		<pubDate>Thu, 16 Jul 2009 11:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.theflyingjalapenolives.com/?p=459#comment-186</guid>
		<description>I generally stick to dot notation as much as possible since I find using brackets clumsy.  That is mostly because of what I was used to in other programming languages I guess.</description>
		<content:encoded><![CDATA[<p>I generally stick to dot notation as much as possible since I find using brackets clumsy.  That is mostly because of what I was used to in other programming languages I guess.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
