Skip to content

Instantly share code, notes, and snippets.

@krzysztofzablocki
Created May 5, 2014 11:17
Show Gist options
  • Save krzysztofzablocki/3c6b9cba4dda976b3ce3 to your computer and use it in GitHub Desktop.
Save krzysztofzablocki/3c6b9cba4dda976b3ce3 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