Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- [NSObject(YYModel) yy_modelToJSONObject] 方法不支持 CGRect 和 NSValue #269

Open
heistings opened this issue Jan 25, 2018 · 1 comment

Comments

@heistings
Copy link

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";

}

@heistings
Copy link
Author

This bug can be fixed by #268

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant