iPhone RSS Parser

I’ve made a simple parser class for reading RSS feeds and a simple demo application for the iPhone that implements the iPhoneRSS class. The following example shows the usage for the RSS class. Basically, the class creates an NSArray of news items, and each object in the array is an NSDictionary. The dictionary contains the element name as the key. /* load feed from URL */ iPhoneRSS *rss = [[iPhoneRSS alloc] initWithURL:[NSURL URLWithString:@"http://www....

July 17, 2008 · Chris Moos