Skip to content

Instantly share code, notes, and snippets.

@Fogh
Created March 27, 2014 13:01
Show Gist options
  • Save Fogh/9807038 to your computer and use it in GitHub Desktop.
Save Fogh/9807038 to your computer and use it in GitHub Desktop.
NSDate to WCF JSON date string
- (NSString *)dateToJSONDate:(NSDate *)date
{
NSDateFormatter *formatter = [NSDateFormatter new];
[formatter setDateFormat:@"Z"];
return [NSString stringWithFormat:@"/Date(%.0f000%@)/", [date timeIntervalSince1970], [formatter stringFromDate:date]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment