Skip to content

Instantly share code, notes, and snippets.

@Kevinwlee
Created August 1, 2012 11:31
Show Gist options
  • Save Kevinwlee/3226002 to your computer and use it in GitHub Desktop.
Save Kevinwlee/3226002 to your computer and use it in GitHub Desktop.
Date stuff
- (NSString *)currentDateString {
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"d"];
NSString *day = [df stringFromDate:self.currentDate];
return day;
}
- (NSString *)currentMonthString {
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"MMMM"];
NSString *day = [df stringFromDate:self.currentDate];
return day;
}
- (void)logDate {
NSLog(@"day: %@", [self currentDateString]);
NSLog(@"month: %@", [self currentMonthString]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment