<?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"
	>
<channel>
	<title>Comments on: iPhone SDK Tutorial: Build a Simple RSS reader for the iPhone</title>
	<atom:link href="http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/</link>
	<description>TheAppleBlog, published by and for the day-to-day Apple user, is a prominent source for news, reviews, walkthroughs, and real life application of all Apple products.</description>
	<pubDate>Wed, 03 Dec 2008 04:01:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: sbwoodside</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-126083</link>
		<dc:creator>sbwoodside</dc:creator>
		<pubDate>Tue, 02 Dec 2008 04:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-126083</guid>
		<description>For an app this size, and given that it runs once, these memory leaks are really irrelevant.</description>
		<content:encoded><![CDATA[<p>For an app this size, and given that it runs once, these memory leaks are really irrelevant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunil Kumar E</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-125815</link>
		<dc:creator>Sunil Kumar E</dc:creator>
		<pubDate>Thu, 27 Nov 2008 08:58:15 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-125815</guid>
		<description>Hi,

I am using XCode3.1 beta. In this version, while starting a new project, under iPhoneOS-&#62;Application menu, no 'Navigation-Based Application' item is there. Only 'Cocoa Touch Application', 'Cocoa Touch List' and 'Cocoa Touch Toolbar' options are there. Is there anything wrong in these steps ? Or do i have to download any sort of plugins to get 'Navigation-Based Application' this option ?

please direct me. i am in stucked stage.

thanks and regards,
sunil</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am using XCode3.1 beta. In this version, while starting a new project, under iPhoneOS-&gt;Application menu, no &#8216;Navigation-Based Application&#8217; item is there. Only &#8216;Cocoa Touch Application&#8217;, &#8216;Cocoa Touch List&#8217; and &#8216;Cocoa Touch Toolbar&#8217; options are there. Is there anything wrong in these steps ? Or do i have to download any sort of plugins to get &#8216;Navigation-Based Application&#8217; this option ?</p>
<p>please direct me. i am in stucked stage.</p>
<p>thanks and regards,<br />
sunil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohrt</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-125476</link>
		<dc:creator>mohrt</dc:creator>
		<pubDate>Sat, 22 Nov 2008 17:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-125476</guid>
		<description>Ugh, this is riddled with memory leaks.
You'll want to add this:


if (currentElement) {
  [currentElement release];
  currentElement = nil;
}

before this:

currentElement = [elementName copy];

and this:

if (stories) {
  [stories release];
  stories = nil;
}

before this:

stories = [[NSMutableArray alloc] init];


That helps a lot of it. Be sure to run this stuff through Instruments.</description>
		<content:encoded><![CDATA[<p>Ugh, this is riddled with memory leaks.<br />
You&#8217;ll want to add this:</p>
<p>if (currentElement) {<br />
  [currentElement release];<br />
  currentElement = nil;<br />
}</p>
<p>before this:</p>
<p>currentElement = [elementName copy];</p>
<p>and this:</p>
<p>if (stories) {<br />
  [stories release];<br />
  stories = nil;<br />
}</p>
<p>before this:</p>
<p>stories = [[NSMutableArray alloc] init];</p>
<p>That helps a lot of it. Be sure to run this stuff through Instruments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-124803</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 14 Nov 2008 00:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-124803</guid>
		<description>thanks I used this to write a program for my church sermon podcast but my question is 1 when i click on my link it opens another page in safari where i then have to choose the mp3, and if a use a rss.xml file the links dont work?  http://bepsermons.libsyn.com/rss is my feed</description>
		<content:encoded><![CDATA[<p>thanks I used this to write a program for my church sermon podcast but my question is 1 when i click on my link it opens another page in safari where i then have to choose the mp3, and if a use a rss.xml file the links dont work?  <a href="http://bepsermons.libsyn.com/rss" rel="nofollow">http://bepsermons.libsyn.com/rss</a> is my feed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: professor Shah</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-124609</link>
		<dc:creator>professor Shah</dc:creator>
		<pubDate>Wed, 12 Nov 2008 01:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-124609</guid>
		<description>Thanks for this tutorial. It helped me a great deal to develop my initial application.</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial. It helped me a great deal to develop my initial application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shobi</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-124204</link>
		<dc:creator>Shobi</dc:creator>
		<pubDate>Thu, 06 Nov 2008 17:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-124204</guid>
		<description>@#69 - 

Where I can paste this code I mean which file?

Thanks!</description>
		<content:encoded><![CDATA[<p>@#69 - </p>
<p>Where I can paste this code I mean which file?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ribar</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-124203</link>
		<dc:creator>Dan Ribar</dc:creator>
		<pubDate>Thu, 06 Nov 2008 17:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-124203</guid>
		<description>Very nice job with all of this.  Any ideas on how to add a 'refresh' button?  

I took the code and am displaying statistics -- very cool way to get at XML data.

Thanks.</description>
		<content:encoded><![CDATA[<p>Very nice job with all of this.  Any ideas on how to add a &#8216;refresh&#8217; button?  </p>
<p>I took the code and am displaying statistics &#8212; very cool way to get at XML data.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-124174</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 06 Nov 2008 05:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-124174</guid>
		<description>You can download the Stanford University's entire iPhone Development Lecture in PDF format here http://www.cultofiphone.org/forums/showthread.php?t=342</description>
		<content:encoded><![CDATA[<p>You can download the Stanford University&#8217;s entire iPhone Development Lecture in PDF format here <a href="http://www.cultofiphone.org/forums/showthread.php?t=342" rel="nofollow">http://www.cultofiphone.org/forums/showthread.php?t=342</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-123965</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Mon, 03 Nov 2008 18:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-123965</guid>
		<description>A much nicer/neater/standard activity indicator in the top status bar:

UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = YES;

and set it to NO when you're done loading your data.</description>
		<content:encoded><![CDATA[<p>A much nicer/neater/standard activity indicator in the top status bar:</p>
<p>UIApplication* app = [UIApplication sharedApplication];<br />
app.networkActivityIndicatorVisible = YES;</p>
<p>and set it to NO when you&#8217;re done loading your data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122787</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 22 Oct 2008 02:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122787</guid>
		<description>Very nice tutorial. Appreciate the work you put into it. One question though. With this parser, is there any reason why it should truncate the description of a feed? I did some digging and I think it may be a problem with RSS2.0.  Can I rule this out or is a plausible reason for the problem? Thanks.</description>
		<content:encoded><![CDATA[<p>Very nice tutorial. Appreciate the work you put into it. One question though. With this parser, is there any reason why it should truncate the description of a feed? I did some digging and I think it may be a problem with RSS2.0.  Can I rule this out or is a plausible reason for the problem? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shobi</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122767</link>
		<dc:creator>Shobi</dc:creator>
		<pubDate>Tue, 21 Oct 2008 22:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122767</guid>
		<description>Very nice tutorial. I’m very much looking forward to seeing how to implement navigation into the next view (instead of launching safari.)</description>
		<content:encoded><![CDATA[<p>Very nice tutorial. I’m very much looking forward to seeing how to implement navigation into the next view (instead of launching safari.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: km</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122472</link>
		<dc:creator>km</dc:creator>
		<pubDate>Sat, 18 Oct 2008 20:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122472</guid>
		<description>hahah
wow i don't get it
well i do ~ but it doens't work for me
hahah</description>
		<content:encoded><![CDATA[<p>hahah<br />
wow i don&#8217;t get it<br />
well i do ~ but it doens&#8217;t work for me<br />
hahah</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: passsingby</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122373</link>
		<dc:creator>passsingby</dc:creator>
		<pubDate>Fri, 17 Oct 2008 15:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122373</guid>
		<description>Any idea how to modify this zip to get it to work on ppc mac? I get the following when i try and build it.
Line Location Tool:0: No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=ppc, VALID_ARCHS=i386).</description>
		<content:encoded><![CDATA[<p>Any idea how to modify this zip to get it to work on ppc mac? I get the following when i try and build it.<br />
Line Location Tool:0: No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=ppc, VALID_ARCHS=i386).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Lilly</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122140</link>
		<dc:creator>Jeff Lilly</dc:creator>
		<pubDate>Wed, 15 Oct 2008 00:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122140</guid>
		<description>And no, the little bit of dealloc code at the end doesn't fix it.</description>
		<content:encoded><![CDATA[<p>And no, the little bit of dealloc code at the end doesn&#8217;t fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Lilly</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-122139</link>
		<dc:creator>Jeff Lilly</dc:creator>
		<pubDate>Wed, 15 Oct 2008 00:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-122139</guid>
		<description>This is horrible code. There are memory leaks everywhere.</description>
		<content:encoded><![CDATA[<p>This is horrible code. There are memory leaks everywhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Podcaster</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121809</link>
		<dc:creator>Podcaster</dc:creator>
		<pubDate>Thu, 09 Oct 2008 19:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121809</guid>
		<description>When you run this application through Instruments it shows memory leaks. I have tried to fix them but I cannot get them all. 

Any ideas? Has anyone else been able to fix the leaks and share when the changes need to be?</description>
		<content:encoded><![CDATA[<p>When you run this application through Instruments it shows memory leaks. I have tried to fix them but I cannot get them all. </p>
<p>Any ideas? Has anyone else been able to fix the leaks and share when the changes need to be?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddie Wilson</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121397</link>
		<dc:creator>Eddie Wilson</dc:creator>
		<pubDate>Wed, 01 Oct 2008 14:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121397</guid>
		<description>Correct me if I am wrong but shouldnt:

	currentElement = [elementName copy];

be this?:

	NSMutableString *test = [[NSMutableString alloc] initWithString:elementName];
	self.currentElement = test;
	[test release];

I might be wrong but the format would create a memory leak, while the later will not. Make sure you run your applications through Instruments.</description>
		<content:encoded><![CDATA[<p>Correct me if I am wrong but shouldnt:</p>
<p>	currentElement = [elementName copy];</p>
<p>be this?:</p>
<p>	NSMutableString *test = [[NSMutableString alloc] initWithString:elementName];<br />
	self.currentElement = test;<br />
	[test release];</p>
<p>I might be wrong but the format would create a memory leak, while the later will not. Make sure you run your applications through Instruments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121330</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Mon, 29 Sep 2008 21:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121330</guid>
		<description>Thank you :)</description>
		<content:encoded><![CDATA[<p>Thank you <img src='http://theappleblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james p</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121306</link>
		<dc:creator>james p</dc:creator>
		<pubDate>Mon, 29 Sep 2008 01:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121306</guid>
		<description>How can I change the text size? Excellent tutorial, but I am finding the text too big!</description>
		<content:encoded><![CDATA[<p>How can I change the text size? Excellent tutorial, but I am finding the text too big!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SANDIP</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121245</link>
		<dc:creator>SANDIP</dc:creator>
		<pubDate>Sat, 27 Sep 2008 09:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121245</guid>
		<description>I am new at i-phone 2.0 application developement....I am not getting at how to access CGrectangles in array!!Plz suggest me any way..Thanks.</description>
		<content:encoded><![CDATA[<p>I am new at i-phone 2.0 application developement&#8230;.I am not getting at how to access CGrectangles in array!!Plz suggest me any way..Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kislay</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-121123</link>
		<dc:creator>kislay</dc:creator>
		<pubDate>Thu, 25 Sep 2008 10:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-121123</guid>
		<description>Thanks a lot . you explain nicely this topic thanks a lot</description>
		<content:encoded><![CDATA[<p>Thanks a lot . you explain nicely this topic thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricco831</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120989</link>
		<dc:creator>Ricco831</dc:creator>
		<pubDate>Wed, 24 Sep 2008 01:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120989</guid>
		<description>This is an awesome tutorial.  I have been looking for a tutorial like this for the longest time.  I actually found this site on www.iphonedevver.com which is an iPhone SDK tutorial search site.</description>
		<content:encoded><![CDATA[<p>This is an awesome tutorial.  I have been looking for a tutorial like this for the longest time.  I actually found this site on <a href="http://www.iphonedevver.com" rel="nofollow">http://www.iphonedevver.com</a> which is an iPhone SDK tutorial search site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wbvdw</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120894</link>
		<dc:creator>wbvdw</dc:creator>
		<pubDate>Tue, 23 Sep 2008 00:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120894</guid>
		<description>@#54 - 

When I open in simulator it doesn't display anything either, what did you determine was your problem?  I'm assuming I forget something but checked my code twice and still haven't found anything.  I'm new to this so I'll continue checking but, if anyone has any advice I'd appreciate it.</description>
		<content:encoded><![CDATA[<p>@#54 - </p>
<p>When I open in simulator it doesn&#8217;t display anything either, what did you determine was your problem?  I&#8217;m assuming I forget something but checked my code twice and still haven&#8217;t found anything.  I&#8217;m new to this so I&#8217;ll continue checking but, if anyone has any advice I&#8217;d appreciate it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Roberts</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120854</link>
		<dc:creator>Matthew Roberts</dc:creator>
		<pubDate>Mon, 22 Sep 2008 07:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120854</guid>
		<description>As to my post #52, I fixed it. A couple of questions:
1. How do I change the font size?
2. Is it possible to show the date?</description>
		<content:encoded><![CDATA[<p>As to my post #52, I fixed it. A couple of questions:<br />
1. How do I change the font size?<br />
2. Is it possible to show the date?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ac</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120829</link>
		<dc:creator>ac</dc:creator>
		<pubDate>Sun, 21 Sep 2008 07:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120829</guid>
		<description>Very nice. Thanks.</description>
		<content:encoded><![CDATA[<p>Very nice. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Roberts</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120826</link>
		<dc:creator>Matthew Roberts</dc:creator>
		<pubDate>Sun, 21 Sep 2008 00:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120826</guid>
		<description>Whenever I try to run the app, the rss feeds do not display. Help!</description>
		<content:encoded><![CDATA[<p>Whenever I try to run the app, the rss feeds do not display. Help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120454</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sat, 13 Sep 2008 15:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120454</guid>
		<description>drop the icon in the same folder as info.plist, and edit info.plist to tell it the name of your icon</description>
		<content:encoded><![CDATA[<p>drop the icon in the same folder as info.plist, and edit info.plist to tell it the name of your icon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arjun</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120447</link>
		<dc:creator>Arjun</dc:creator>
		<pubDate>Sat, 13 Sep 2008 11:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120447</guid>
		<description>Hey, thank you so much man...wow...I'm a total NOOB, and even I was successful on 2nd try! But can you please tell me how to change the icon in the home screen for this app? Thank you again man...</description>
		<content:encoded><![CDATA[<p>Hey, thank you so much man&#8230;wow&#8230;I&#8217;m a total NOOB, and even I was successful on 2nd try! But can you please tell me how to change the icon in the home screen for this app? Thank you again man&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernie Oporto</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120197</link>
		<dc:creator>Ernie Oporto</dc:creator>
		<pubDate>Sat, 06 Sep 2008 15:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120197</guid>
		<description>I just changed the URL to point to a Flickr Interesting RSS feed I rolled up and it was easy to view.  Too bad it's so hard to get something like that onto my iPhone since I could see myself using that little app.</description>
		<content:encoded><![CDATA[<p>I just changed the URL to point to a Flickr Interesting RSS feed I rolled up and it was easy to view.  Too bad it&#8217;s so hard to get something like that onto my iPhone since I could see myself using that little app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120193</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sat, 06 Sep 2008 07:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120193</guid>
		<description>The RSS feed address is hardwired in the viewDidAppear method. Easy to change...</description>
		<content:encoded><![CDATA[<p>The RSS feed address is hardwired in the viewDidAppear method. Easy to change&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Roberts</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120192</link>
		<dc:creator>Matthew Roberts</dc:creator>
		<pubDate>Sat, 06 Sep 2008 05:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120192</guid>
		<description>How do you change where the RSS feed comes from?</description>
		<content:encoded><![CDATA[<p>How do you change where the RSS feed comes from?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koffst3r</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120157</link>
		<dc:creator>koffst3r</dc:creator>
		<pubDate>Fri, 05 Sep 2008 09:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120157</guid>
		<description>Great tutorial for someone like me who is noobish.
Tnx</description>
		<content:encoded><![CDATA[<p>Great tutorial for someone like me who is noobish.<br />
Tnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120086</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Wed, 03 Sep 2008 14:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120086</guid>
		<description>In the root view controller you can get the activity indicator to work with the code below, posting this to save someone else the few hours it took me to figure this out...

Also if you get the warning mentioned in comment #32, you can fix it by moving the definition of that method ahead of the use of it in that file.


- (void)viewDidLoad {
	// Add the following line if you want the list to be editable
	//self.navigationItem.leftBarButtonItem = self.editButtonItem;
	
	// make the activity indicator as the right side button
	CGRect frame = CGRectMake(0.0, 0.0, 25.0, 25.0);
	activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:frame];
	[activityIndicator startAnimating];
	[activityIndicator sizeToFit];
	activityIndicator.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin &#124;
										   UIViewAutoresizingFlexibleRightMargin &#124;
										   UIViewAutoresizingFlexibleTopMargin &#124;
										   UIViewAutoresizingFlexibleBottomMargin);
	
	UIBarButtonItem *loadingView = [[UIBarButtonItem alloc] initWithCustomView:activityIndicator];
	loadingView.target = self;
	self.navigationItem.rightBarButtonItem = loadingView;
}
</description>
		<content:encoded><![CDATA[<p>In the root view controller you can get the activity indicator to work with the code below, posting this to save someone else the few hours it took me to figure this out&#8230;</p>
<p>Also if you get the warning mentioned in comment #32, you can fix it by moving the definition of that method ahead of the use of it in that file.</p>
<p>- (void)viewDidLoad {<br />
	// Add the following line if you want the list to be editable<br />
	//self.navigationItem.leftBarButtonItem = self.editButtonItem;</p>
<p>	// make the activity indicator as the right side button<br />
	CGRect frame = CGRectMake(0.0, 0.0, 25.0, 25.0);<br />
	activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:frame];<br />
	[activityIndicator startAnimating];<br />
	[activityIndicator sizeToFit];<br />
	activityIndicator.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |<br />
										   UIViewAutoresizingFlexibleRightMargin |<br />
										   UIViewAutoresizingFlexibleTopMargin |<br />
										   UIViewAutoresizingFlexibleBottomMargin);</p>
<p>	UIBarButtonItem *loadingView = [[UIBarButtonItem alloc] initWithCustomView:activityIndicator];<br />
	loadingView.target = self;<br />
	self.navigationItem.rightBarButtonItem = loadingView;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-120010</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 01 Sep 2008 00:13:50 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-120010</guid>
		<description>Love this tutorial, great work!  Would love to know how to add a thumbnail image from the feed to the table view and how to link a video link from the XML feed to the media player framework...  Got it to play a video when you click the article, but it launches in Safari... Can't wait for an update/part two of this!</description>
		<content:encoded><![CDATA[<p>Love this tutorial, great work!  Would love to know how to add a thumbnail image from the feed to the table view and how to link a video link from the XML feed to the media player framework&#8230;  Got it to play a video when you click the article, but it launches in Safari&#8230; Can&#8217;t wait for an update/part two of this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Terhorst</title>
		<link>http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/#comment-119827</link>
		<dc:creator>Jason Terhorst</dc:creator>
		<pubDate>Mon, 25 Aug 2008 23:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/?p=3900#comment-119827</guid>
		<description>Hi, folks,
If you're joining the party, feel free to post any questions here in the comments. Please don't email me with questions; I don't have time to answer them all.
Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, folks,<br />
If you&#8217;re joining the party, feel free to post any questions here in the comments. Please don&#8217;t email me with questions; I don&#8217;t have time to answer them all.<br />
Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
