RSSKit 0.6.1
|
Instance Methods | |
(id) | - initFromStorageWithURL: |
(id) | - initWithDictionary: |
(BOOL) | - store |
(NSMutableDictionary *) | - plistDictionary |
Class Methods | |
(id< RSSMutableArticle >) | + articleFromStorageWithURL: |
Allows to store articles to files and serialize articles into Plist-compatibly dictionaries.
+ (id< RSSMutableArticle >) articleFromStorageWithURL: | (NSString*) | anURL |
Returns the article with the URL anURL from the storage
Extends class RSSArticle.
- (id) initFromStorageWithURL: | (NSString*) | anURL |
Initialises the article with the URL anURL from the storage.
Initialises the article with the URL anURL from the storage.
Calling this method is generally a bad idea, since it doesn't allow you to decide on load-time which article is going to be created. Better use one of the RSSFactory methods for article unarchiving.
Extends class RSSArticle.
- (id) initWithDictionary: | (NSDictionary*) | aDictionary |
Initialises the article instance with the contents of the aDictionary variable.
Extends class RSSArticle.
- (NSMutableDictionary *) plistDictionary |
Returns the dictionary that stores the information for this article object.
Extends class RSSArticle.
- (BOOL) store |
Stores the article (usually as a file in the Reader folder).
Extends class RSSArticle.