RSSKit 0.6.1
|
#import <RSSFeed+Fetching.h>
Instance Methods | |
(enum RSSFeedError) | - lastError |
(enum RSSFeedError) | - fetch |
(void) | - fetchInBackground |
The ,,Fetching'' category of RSSFeed contains methods for the RSSFeed class, which are responsible for fetching and parsing feeds.
- (enum RSSFeedError) fetch |
Fetches the feed from the web.
Fetches the feed from its feed URL, parses it and adds the found articles to the list of articles contained in this feed (if they are new).
Extends class 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.
Extends class RSSFeed.
- (enum RSSFeedError) lastError |
Returns the last fetching error.
Returns the last error. Guaranteed to return the last fetching result.
Extends class RSSFeed.