Skip to content

Instantly share code, notes, and snippets.

@dreampowder
Last active March 9, 2017 11:01
Show Gist options
  • Save dreampowder/7f0c4ca981db1d77bfbdd9e1b539fcb6 to your computer and use it in GitHub Desktop.
Save dreampowder/7f0c4ca981db1d77bfbdd9e1b539fcb6 to your computer and use it in GitHub Desktop.
Relative Date formatter
+ (NSDateFormatter*)getRelativeDateFormatter{
NSDateFormatter* df = [NSDateFormatter new];
df.dateStyle = NSDateFormatterShortStyle;
df.timeStyle = NSDateFormatterShortStyle;
df.doesRelativeDateFormatting = YES;
return df;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment