RSSKit 0.6.1
|
#import <RSSFeedProtocol.h>
Inherited by <RSSMutableFeed>.
Instance Methods | |
(NSEnumerator *) | - articleEnumerator |
(NSSet *) | - articleSet |
(int) | - articleCount |
(BOOL) | - isFetching |
(NSString *) | - feedName |
(NSURL *) | - feedURL |
(enum RSSFeedError) | - fetch |
(void) | - fetchInBackground |
(enum RSSFeedError) | - lastError |
(BOOL) | - autoClear |
The RSS feed protocol defines the way users are supposed to talk to a feed.
- (int) articleCount |
- (NSEnumerator *) articleEnumerator |
Reimplemented in RSSFeed.
- (NSSet *) articleSet |
- (BOOL) autoClear |
- (NSString *) feedName |
Reimplemented in RSSFeed.
- (NSURL *) feedURL |
Reimplemented in RSSFeed.
- (enum RSSFeedError) fetch |
Fetches the feed from the web.
Reimplemented in RSSFeed.
- (void) fetchInBackground |
Fetches the feed from the web. Feed fetching is done in the background. When the feed is fetched, the feed will post a RSSFeedFetchedNotification.
Reimplemented in RSSFeed.
- (BOOL) isFetching |
Returns YES if and only if this feed is currently being fetched.
Reimplemented in RSSFeed.
- (enum RSSFeedError) lastError |
Returns the last fetching error.