Courtney Stephenson
Courtney Stephenson

Reputation: 930

Multiple RSS Feeds iPhone Reader

I am creating an iPhone app that will contain multiple RSS feeds. I have already created a UITableView with one feed using the following tutorial:

http://gigaom.com/apple/tutorial-build-a-simple-rss-reader-for-iphone/

I need your help in creating a UITableView with multiple feeds.

Thank you,

CKallemeres

Upvotes: 0

Views: 2168

Answers (2)

max_
max_

Reputation: 24481

You might want to check out NSOperationQueue and add each xml to be parsed to the OperationQueue.

Here is the documentation for it: http://developer.apple.com/library/mac/#documentation/cocoa/reference/NSOperationQueue_class/Reference/Reference.html

Upvotes: 1

Javier Otero
Javier Otero

Reputation: 118

If you don't mind piggy banking off of Google Reader, I've seen many apps that successfully use that as the aggregator. To have your application handle multiple feeds would be very resource/network intensive, in my opinion. A good example of an excellent Reader based app is Reeder.

If you still want to create your own custom aggregator solution, it still might be useful to work off of Google Reader to start (for development purposes) to at least understand how you'll handle multiple feeds rolling in. Also, I'd look into more server-side based solutions for providing that information as I still keep my opinion that handling that in the app itself would be excessive.

Upvotes: 2

Related Questions