Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khanghoang/278c641d3404974c8139 to your computer and use it in GitHub Desktop.
Save khanghoang/278c641d3404974c8139 to your computer and use it in GitHub Desktop.
@implementation KZPropertyMapper (MyAppBoxing)
+ (NSDate *)boxValueAsDateSince1970:(id)value __used
{
if (value == nil) {
return nil;
}
AssertTrueOrReturnNil([value isKindOfClass:NSNumber.class]);
return [NSDate dateWithTimeIntervalSince1970:[value floatValue]];
}
@end
//! in boxing
@"timeInterval" : KZBox(DateSince1970, @"myDateProperty")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment