Skip to content

Instantly share code, notes, and snippets.

@quellish
Created September 21, 2014 08:52
Show Gist options
  • Select an option

  • Save quellish/1d2146d4fa77117c85ff to your computer and use it in GitHub Desktop.

Select an option

Save quellish/1d2146d4fa77117c85ff to your computer and use it in GitHub Desktop.
JSON to Objective-C date accessor
- (void) setDateString:(NSString *)string {
NSDate *date = [someDateThing dateFromISO8601String:string];
return [self setDate:date];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment