Skip to content

Instantly share code, notes, and snippets.

@nalanj
Created July 1, 2009 19:11
Show Gist options
  • Save nalanj/138987 to your computer and use it in GitHub Desktop.
Save nalanj/138987 to your computer and use it in GitHub Desktop.
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:-7];
NSDate *weekAgo = [calendar dateByAddingComponents:comps toDate:self.currentDate options:0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment