-
Notifications
You must be signed in to change notification settings - Fork 921
Open
Description
This is my model class:
@interface YYWebArticle : YYArticle
@property (nonatomic, strong) NSString *url;
@property (nonatomic) CGRect rect;
@property (nonatomic) NSValue *myRect;
@end
@implementation YYWebArticle
+ (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper
{
NSMutableDictionary *mapper = [[super modelCustomPropertyMapper] mutableCopy];
[mapper addEntriesFromDictionary:@{
@"url":@"url",
@"myRect":@"rect"
}];
return [mapper copy];
}
@end
The - [NSObjee.ct(YYModel) yy_modelToJSONObject] does not work for me:
(lldb) po article.url
http:www.weibo.cn/adffsffasff
(lldb) po article.myRect
NSRect: {{100, 100}, {100, 100}}
(lldb) po [article yy_modelToJSONObject]
{
url = "http:www.weibo.cn/adffsffasff";
}
Metadata
Metadata
Assignees
Labels
No labels