Created
May 5, 2014 11:17
-
-
Save krzysztofzablocki/3c6b9cba4dda976b3ce3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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