<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Learning Cocoa...</title>
	<atom:link href="http://cocoaing.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cocoaing.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 28 Dec 2010 10:54:37 +0000</lastBuildDate>
	<language>ko</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cocoaing.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Learning Cocoa...</title>
		<link>http://cocoaing.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cocoaing.wordpress.com/osd.xml" title="Learning Cocoa..." />
	<atom:link rel='hub' href='http://cocoaing.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Objective-C 에서 Private Property 만들기</title>
		<link>http://cocoaing.wordpress.com/2010/12/28/objective-c-%ec%97%90%ec%84%9c-private-property-%eb%a7%8c%eb%93%a4%ea%b8%b0/</link>
		<comments>http://cocoaing.wordpress.com/2010/12/28/objective-c-%ec%97%90%ec%84%9c-private-property-%eb%a7%8c%eb%93%a4%ea%b8%b0/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 10:20:22 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://cocoaing.wordpress.com/?p=21</guid>
		<description><![CDATA[Objective-C에서는 property라는 기능으로 instance variable들에 대해 accessor를 자동으로 설정해 줄 수 있다. #import #import "CalculatorBrain.h" @interface CalculatorViewController : UIViewController { CalculatorBrain *brain; IBOutlet UILabel *display; BOOL userIsInTheMiddleOfTypingANumber; } - (IBAction)digitPressed:(UIButton *)sender; - (IBAction)operationPressed:(UIButton *)sender; &#160; @end 위의 헤더 코드(xxx.h)에서 brain이라는 instance variable을 property로 설정해 주기 위해서 구현 코드(xxx.m)의 @implementation부분 전에 @interface 클래스이름()을 써주고 @property 를 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=21&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Objective-C에서는 property라는 기능으로 instance variable들에 대해 accessor를 자동으로 설정해 줄 수 있다.</p>
<p style="padding-left:30px;"><code><br />
#import<br />
#import "CalculatorBrain.h"</code></p>
<p style="padding-left:30px;"><code>@interface CalculatorViewController : UIViewController {<br />
CalculatorBrain *brain;<br />
IBOutlet UILabel *display;<br />
BOOL userIsInTheMiddleOfTypingANumber;<br />
}</code></p>
<p style="padding-left:30px;"><code>- (IBAction)digitPressed:(UIButton *)sender;<br />
- (IBAction)operationPressed:(UIButton *)sender;</code></p>
<p style="padding-left:30px;"><code> </code></p>
<p style="padding-left:30px;">&nbsp;</p>
<p style="padding-left:30px;"><code>@end<br />
</code></p>
<p>위의 헤더 코드(xxx.h)에서 brain이라는 instance variable을 property로 설정해 주기 위해서 구현 코드(xxx.m)의 @implementation부분 전에 @interface <em>클래스이름</em>()을 써주고 @property 를 이용해 원하는 변수를 private property화 할 수 있다. 예를 들면 다음과 같다.</p>
<p style="padding-left:30px;"><code><br />
#import "CalculatorViewController.h"</code></p>
<p style="padding-left:30px;"><code>@interface CalculatorViewController()<br />
@property (readonly) CalculatorBrain *brain;<br />
@end</code></p>
<p style="padding-left:30px;"><code> </code></p>
<p style="padding-left:30px;"><code>@implementation CalculatorViewController<br />
...<br />
</code></p>
<p>일반적으로 property와 synthesize를 통해 getter와 setter를 만들어 주는 일은 당연히 public하게 만들어지지만, (애초에 OOP에서 getter와 setter를 만들어주는 이유가 접근할 수 없는 private인 instance variable를 안전하게 이용하게 할 수 있도록 통로를 제공하는 것임) 정말 외부로부터 접근을 막아야 하는 instance variable이지만 property의 장점(.(dot) 표기법)을 누리고 싶을때 사용할 수 있겠다.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=21&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2010/12/28/objective-c-%ec%97%90%ec%84%9c-private-property-%eb%a7%8c%eb%93%a4%ea%b8%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
		<item>
		<title>시험삼아 써보는 포스트</title>
		<link>http://cocoaing.wordpress.com/2009/12/17/%ec%8b%9c%ed%97%98%ec%82%bc%ec%95%84-%ec%8d%a8%eb%b3%b4%eb%8a%94-%ed%8f%ac%ec%8a%a4%ed%8a%b8/</link>
		<comments>http://cocoaing.wordpress.com/2009/12/17/%ec%8b%9c%ed%97%98%ec%82%bc%ec%95%84-%ec%8d%a8%eb%b3%b4%eb%8a%94-%ed%8f%ac%ec%8a%a4%ed%8a%b8/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 04:25:25 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://cocoaing.wordpress.com/2009/12/17/%ec%8b%9c%ed%97%98%ec%82%bc%ec%95%84-%ec%8d%a8%eb%b3%b4%eb%8a%94-%ed%8f%ac%ec%8a%a4%ed%8a%b8/</guid>
		<description><![CDATA[아이폰 WordPress 어플로 시험삼아 써보는 글이다<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=19&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>아이폰 WordPress 어플로 시험삼아 써보는 글이다</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=19&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2009/12/17/%ec%8b%9c%ed%97%98%ec%82%bc%ec%95%84-%ec%8d%a8%eb%b3%b4%eb%8a%94-%ed%8f%ac%ec%8a%a4%ed%8a%b8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
		<item>
		<title>OSXDEV Wiki</title>
		<link>http://cocoaing.wordpress.com/2009/11/14/osxdev-wiki/</link>
		<comments>http://cocoaing.wordpress.com/2009/11/14/osxdev-wiki/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 06:37:21 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>

		<guid isPermaLink="false">http://cocoaing.wordpress.com/?p=16</guid>
		<description><![CDATA[OSXdev 포럼의 wiki페이지는 매우 유용하다. http://wiki.osxdev.org/ 코코아에 대한 전반적 지식 부터 해서, 애플 가이드 문서, OSXDev의 문서, Iphone 개발 문서, 스터디 자료 등이 한군데에 모여있다. 번역된 애플 문서는 초보자에게는 가뭄의 단비 같은 존재이다. 이러한 곳으로부터 많은 것을 배우고, 후에는 성장한 내가 개발 커뮤니티에 도움이 될 수 있으면 좋겠다.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=16&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>OSXdev 포럼의 wiki페이지는 매우 유용하다.</p>
<p><a href="http://wiki.osxdev.org/" target="_blank">http://wiki.osxdev.org/</a></p>
<p>코코아에 대한 전반적 지식 부터 해서, 애플 가이드 문서, OSXDev의 문서, Iphone 개발 문서, 스터디 자료 등이 한군데에 모여있다. 번역된 애플 문서는 초보자에게는 가뭄의 단비 같은 존재이다. 이러한 곳으로부터 많은 것을 배우고, 후에는 성장한 내가 개발 커뮤니티에 도움이 될 수 있으면 좋겠다.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=16&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2009/11/14/osxdev-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
		<item>
		<title>Nib와 Xib</title>
		<link>http://cocoaing.wordpress.com/2009/11/14/nib%ec%99%80-xib/</link>
		<comments>http://cocoaing.wordpress.com/2009/11/14/nib%ec%99%80-xib/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 04:55:05 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>

		<guid isPermaLink="false">http://cocoaing.wordpress.com/?p=9</guid>
		<description><![CDATA[스노우 레오파드에서 작동하는 Xcode는 3.2 버젼이다. 내가 공부하고 있는 책  &#8217;코코아 프로그래밍 3rd Edition&#8217; 에서는 리소스 파일이 MainMenu.nib와 같이 NIB형식이지만, 내가 사용하는 Xcode는 3.2 버젼으로 MainMenu.xib와 같이 XIB확장자로 되어있다. 일단 확장자가 다르다보니 책에서 알려주는 내용과 실제 다루고 있는 파일이 조금 다르지 않는가 겁이나서 구글링을 해보았다. http://dglee2.wordpress.com/2008/08/28/xib와-nib/ dglee2님의 위 글에 따르면 Xib와 Nib는 개발 하는 입장에서 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=9&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>스노우 레오파드에서 작동하는 Xcode는 3.2 버젼이다.</p>
<p>내가 공부하고 있는 책  &#8217;코코아 프로그래밍 3rd Edition&#8217; 에서는 리소스 파일이 MainMenu.nib와 같이 NIB형식이지만, 내가 사용하는 Xcode는 3.2 버젼으로 MainMenu.xib와 같이 XIB확장자로 되어있다.</p>
<p>일단 확장자가 다르다보니 책에서 알려주는 내용과 실제 다루고 있는 파일이 조금 다르지 않는가 겁이나서 구글링을 해보았다.</p>
<p><a href="http://dglee2.wordpress.com/2008/08/28/xib와-nib/" target="_blank">http://dglee2.wordpress.com/2008/08/28/xib와-nib/</a></p>
<p>dglee2님의 위 글에 따르면 Xib와 Nib는 개발 하는 입장에서 차이는 없다고 한다. Nib파일은 리소스가 수정 가능하도록 노출되는 수가 있고, Bundle과 같은 경우 HFS파일 시스템의 metadata가 필요한데, 웹을 통해 이동하면서 metadata가 사라질 수가 있다. Bundle의 문제 때문에 애플에서는  XML 형태의 포맷인 Xib를 만들었다고 한다.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=9&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2009/11/14/nib%ec%99%80-xib/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
		<item>
		<title>Sample Post</title>
		<link>http://cocoaing.wordpress.com/2009/11/14/sample-post/</link>
		<comments>http://cocoaing.wordpress.com/2009/11/14/sample-post/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 00:51:11 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>

		<guid isPermaLink="false">http://cocoaing.wordpress.com/?p=7</guid>
		<description><![CDATA[My first post on WordPress. Nice to meet you.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=7&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first post on WordPress.</p>
<p>Nice to meet you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=7&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2009/11/14/sample-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://cocoaing.wordpress.com/2009/11/14/hello-world/</link>
		<comments>http://cocoaing.wordpress.com/2009/11/14/hello-world/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 00:20:58 +0000</pubDate>
		<dc:creator>leechkr</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=1&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cocoaing.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cocoaing.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cocoaing.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cocoaing.wordpress.com&amp;blog=10480403&amp;post=1&amp;subd=cocoaing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cocoaing.wordpress.com/2009/11/14/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/101c2f24a9155c00e464d3716119f76c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leechkr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
