Skip to content

Instantly share code, notes, and snippets.

@jquave
Created April 16, 2012 16:52
Show Gist options
  • Save jquave/2399928 to your computer and use it in GitHub Desktop.
Save jquave/2399928 to your computer and use it in GitHub Desktop.
- (NSDate *)beginningOfWeek {
NSCalendar *calendar = [NSCalendar currentCalendar];
// Get the weekday component of the current date
NSDateComponents *components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSWeekCalendarUnit | NSWeekdayCalendarUnit)
fromDate:self];
[components setWeekday:1];
return [calendar dateFromComponents:components];
}
- (NSDate *)endOfWeek {
NSCalendar *calendar = [NSCalendar currentCalendar];
// Get the weekday component of the current date
NSDateComponents *components = [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSWeekCalendarUnit | NSWeekdayCalendarUnit)
fromDate:self];
[components setWeekday:1];
[components setWeek:[components week]+1];
return [calendar dateFromComponents:components];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment