Newer Version Available
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
| Inherits from | Declared in |
|---|---|
EVGCategorizedItem : EVGItem : NSObject | EVGItems.h |
A blog is content that is typically presented as reverse chronologically sorted on a single topic.
Date and time when this article was last modified.
1@property (nullable, nonatomic, strong) NSDate *modifiedDateSee Also
Subtitle for this article.
1@property (nullable, nonatomic, copy) NSString *subTitleCreates an EVGBlog with the required ID only.
1+ (nonnull instancetype)blogWithId:(nonnull NSString *)evgIdParameters
| Parameter | Description |
|---|---|
evgId | See [EVGItem evgId]. This is the only required field. |
Return Value
A blog which can be further modified.
Creates an EVGBlog with the required id and most common optionals.
1+ (nonnull instancetype)blogWithId:(nonnull NSString *)evgId name:(nullable NSString *)name subTitle:(nullable NSString *)subTitle url:(nullable NSString *)url evgDescription:(nullable NSString *)evgDescriptionParameters
| Parameter | Description |
|---|---|
evgId | See [EVGItem evgId]. This is the only required field. |
name | See [EVGItem name] |
subTitle | See subTitle |
url | See [EVGItem url] |
evgDescription | See [EVGItem evgDescription] |
Return Value
A blog which can be further modified.
Creates an EVGBlog from the provided JSON.
1+ (nullable instancetype)blogFromJSONDictionary:(nonnull NSDictionary<NSString*,id> *)jsonParameters
| Parameter | Description |
|---|---|
json | A blog in JSON form |
Return Value
A blog which can be further modified, or nil if JSON is invalid
Newer Version Available