Skip to content

Instantly share code, notes, and snippets.

@Air-Craft
Created December 19, 2014 12:01
Show Gist options
  • Save Air-Craft/13bf90fb9d7bd8b7bb09 to your computer and use it in GitHub Desktop.
Save Air-Craft/13bf90fb9d7bd8b7bb09 to your computer and use it in GitHub Desktop.
Calculate person’s age from NSDate #objective-c #datetime #basic
NSDate *birthday = value;
NSDate *now = [NSDate date];
NSDateComponents *ageComponents = [[NSCalendar currentCalendar]
components:NSYearCalendarUnit
fromDate:birthday
toDate:now
options:0];
NSInteger age = [ageComponents year];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment