Skip to content

Instantly share code, notes, and snippets.

@ariok
Created November 29, 2013 16:39
Show Gist options
  • Save ariok/7708442 to your computer and use it in GitHub Desktop.
Save ariok/7708442 to your computer and use it in GitHub Desktop.
+ (NSDate *)dateWithYear:(NSInteger)year month:(NSInteger)month day:(NSInteger)day {
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setYear:year];
[components setMonth:month];
[components setDay:day];
return [calendar dateFromComponents:components];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment