Skip to content

Instantly share code, notes, and snippets.

@centwave
Created July 24, 2013 04:09
Show Gist options
  • Save centwave/6068007 to your computer and use it in GitHub Desktop.
Save centwave/6068007 to your computer and use it in GitHub Desktop.
Shared Property with All Instance
- (NSDateFormatter *)formatter {
static NSDateFormatter *formatter;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_formatter = [[NSDateFormatter alloc] init];
_formatter.dateFormat = @"EEE MMM dd HH:mm:ss Z yyyy"; // twitter date format
});
return formatter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment