# RSSKit **Repository Path**: geekcj/RSSKit ## Basic Information - **Project Name**: RSSKit - **Description**: iOS framework to make development of RSS reader apps easier. - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 8 - **Forks**: 0 - **Created**: 2015-12-20 - **Last Updated**: 2025-03-20 ## Categories & Tags **Categories**: rss, ios-modules **Tags**: None ## README
RSSKit is an easy-to use iOS framework to make RSS feed processing simple. It consists of only 5 small classes, so it's extremely lightweight yet powerful. It supports both the RSS 2.0 and the Atom 1.0 feed formats.
#import <RSSKit/RSSKit.h>
@interface MyParserDelegate: NSObject <RSSParserDelegate>
RSSParser *parser = [[RSSParser alloc] initWithUrl:@"http://example.com/feed" synchronous:NO];
MyParserDelegate *theDelegateObject = [[MyParserDelegate alloc] init];
parser.delegate = theDelegateObject;
[parser parse];