<?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 2.0 Programming : Property</title>
	<atom:link href="http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/</link>
	<description>All About Mac and iPhone Programming</description>
	<lastBuildDate>Sat, 17 Sep 2011 15:01:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: kantae</title>
		<link>http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/comment-page-1/#comment-244</link>
		<dc:creator>kantae</dc:creator>
		<pubDate>Sat, 17 Sep 2011 14:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfeteria.com/?p=414#comment-244</guid>
		<description>ยกมาจากตัวอย่าง สมมติเราให้
@property(assign) NSString * synthesizeValue;

แล้วมา
- (void)setdynamicValue:(NSString *)newValue
{
    	if (newValue != dynamicValue)
	{
        		dynamicValue = [newValue copy];
    	}
}
แบบนี้มันคือการ override หรือเปล่าครับ

เพราะผมเข้าใจว่าถ้าเราประกาศ
@property(assign) NSString * synthesizeValue;
ก็ไม่จำเป็นต้องใส่รายละเอียดใน @implementation
ให้ใช้งานได้เลย</description>
		<content:encoded><![CDATA[<p>ยกมาจากตัวอย่าง สมมติเราให้<br />
@property(assign) NSString * synthesizeValue;</p>
<p>แล้วมา<br />
- (void)setdynamicValue:(NSString *)newValue<br />
{<br />
    	if (newValue != dynamicValue)<br />
	{<br />
        		dynamicValue = [newValue copy];<br />
    	}<br />
}<br />
แบบนี้มันคือการ override หรือเปล่าครับ</p>
<p>เพราะผมเข้าใจว่าถ้าเราประกาศ<br />
@property(assign) NSString * synthesizeValue;<br />
ก็ไม่จำเป็นต้องใส่รายละเอียดใน @implementation<br />
ให้ใช้งานได้เลย</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m.possible</title>
		<link>http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/comment-page-1/#comment-208</link>
		<dc:creator>m.possible</dc:creator>
		<pubDate>Fri, 22 Oct 2010 04:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfeteria.com/?p=414#comment-208</guid>
		<description>^.^   กำลัง งงอยู่พอดีเลย ครับ  เพิ่งได้  iMac  มาตอนนี้กำลังสนุกกับ  Os ใหม่ และหัดเขียน  Objective C ไปพร้อมๆกัน    เขียนแต่  .NET  มา ก็เลยงงว่า xcode จะมีให้สร้าง propery get/set ไหม บทเรียนของพี่ช่วยได้เยอะครับ</description>
		<content:encoded><![CDATA[<p>^.^   กำลัง งงอยู่พอดีเลย ครับ  เพิ่งได้  iMac  มาตอนนี้กำลังสนุกกับ  Os ใหม่ และหัดเขียน  Objective C ไปพร้อมๆกัน    เขียนแต่  .NET  มา ก็เลยงงว่า xcode จะมีให้สร้าง propery get/set ไหม บทเรียนของพี่ช่วยได้เยอะครับ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anuchiit</title>
		<link>http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/comment-page-1/#comment-134</link>
		<dc:creator>anuchiit</dc:creator>
		<pubDate>Tue, 01 Sep 2009 19:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfeteria.com/?p=414#comment-134</guid>
		<description>@property (nonatomic,retain) 
ความหมายของตัวนี้คืออะไรหรอครับ 
เท่าที่อ่านดูช่วยยกตัวอย่างการทำงานจริงให้ดูหน่อยซักนิดได้ไหมครับที่บอกว่า
nonatomic มันจะไม่ Lock Thread น่ะครับ คืองงว่ามันใช้กับเรื่อง Thread หรือเปล่า

ขอบคุณครับ</description>
		<content:encoded><![CDATA[<p>@property (nonatomic,retain)<br />
ความหมายของตัวนี้คืออะไรหรอครับ<br />
เท่าที่อ่านดูช่วยยกตัวอย่างการทำงานจริงให้ดูหน่อยซักนิดได้ไหมครับที่บอกว่า<br />
nonatomic มันจะไม่ Lock Thread น่ะครับ คืองงว่ามันใช้กับเรื่อง Thread หรือเปล่า</p>
<p>ขอบคุณครับ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anuchiit</title>
		<link>http://www.macfeteria.com/blog/2008/10/22/objective-c-programming-property/comment-page-1/#comment-133</link>
		<dc:creator>anuchiit</dc:creator>
		<pubDate>Tue, 01 Sep 2009 19:16:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.macfeteria.com/?p=414#comment-133</guid>
		<description>@property (nonatomic,retain) 
ความหมายของตัวนี้คืออะไรหรอครับ 
เท่าที่อ่านดูช่วยยกตัวอย่างการทำงานจริงให้ดูหน่อยซักนิดได้ไหมครับที่บอกว่า
nonatomic มันจะไม่ Lock Thread น่ะครับ คืองงว่ามันใช้กับเรื่อง Thread หรือเปล่า</description>
		<content:encoded><![CDATA[<p>@property (nonatomic,retain)<br />
ความหมายของตัวนี้คืออะไรหรอครับ<br />
เท่าที่อ่านดูช่วยยกตัวอย่างการทำงานจริงให้ดูหน่อยซักนิดได้ไหมครับที่บอกว่า<br />
nonatomic มันจะไม่ Lock Thread น่ะครับ คืองงว่ามันใช้กับเรื่อง Thread หรือเปล่า</p>
]]></content:encoded>
	</item>
</channel>
</rss>

