Skip to content

Instantly share code, notes, and snippets.

@urouro
Created September 12, 2014 11:27
Show Gist options
  • Save urouro/2772027e0bab099f38e1 to your computer and use it in GitHub Desktop.
Save urouro/2772027e0bab099f38e1 to your computer and use it in GitHub Desktop.
NSString+ConvertDateFormat
NSDateFormatter *formatter = [NSDateFormatter new];
[formatter setDateFormat:@"yyyy-MM-dd"];
cell.textLabel.text = [[formatter dateFromString:master.date] stringValueWithFormat:@"yyyy.MM.dd”];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment