Skip to content

Instantly share code, notes, and snippets.

@dmishe
Created March 14, 2012 23:23
Show Gist options
  • Save dmishe/2040349 to your computer and use it in GitHub Desktop.
Save dmishe/2040349 to your computer and use it in GitHub Desktop.
static NSDateFormatter *monthYearFormatter;
#import "NSDate+DateUtils.h"
@implementation NSDate (DateUtils)
- (NSString *)stringMonthYear
{
if (!monthYearFormatter)
{
monthYearFormatter = [[NSDateFormatter alloc] init];
monthYearFormatter.dateFormat = @"MM yyyy";
}
return [monthYearFormatter stringFromDate:self];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment