Moshe
Moshe

Reputation: 58097

Objective-C Library for RSS feed parsing?

I'm looking for an Objective-C library for an iOS app that will parse and display articles form an RSS feed.

Specifically,m I'm looking to make an app for a news website. The framework should be able to work with various RSS XML structures if possible. (Well, two different news sites. One uses Wordpress-generated RSS and one does not.)

Upvotes: 10

Views: 10241

Answers (5)

Ric Santos
Ric Santos

Reputation: 16467

This library is about as old as this question: https://github.com/NextfazeSD/WordPressSyncer. It syncs WordPress blogs from the server, saving data locally in a core data database.

Upvotes: 0

user529758
user529758

Reputation:

My drop-in solution (deals with Wordpress' RSS 2.0 and the Atom 1.0 format as well): http://github.com/H2CO3/RSSKit

Upvotes: 4

Max
Max

Reputation: 1060

MWFeedParser is another interesting library to look into.

Upvotes: 7

schwa
schwa

Reputation: 11942

How about https://github.com/touchcode/TouchRSS?

Upvotes: 5

Guido Hendriks
Guido Hendriks

Reputation: 5776

You could use Apples NSXMLParser Class. Or you could use the C-based libXML2.

Upvotes: 2

Related Questions