开发者

Multiple RSS Feeds iPhone Reader

开发者 https://www.devze.com 2023-02-10 11:49 出处:网络
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:

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开发者_如何学Python UITableView with multiple feeds.

Thank you,

CKallemeres


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消