Created
August 23, 2014 20:00
-
-
Save ivangodfather/2bf1986084f861427ab9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NSDate *date = [NSDate date]; | |
| NSCalendar *calendar = [NSCalendar currentCalendar]; | |
| NSInteger comps = (NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit); | |
| NSDateComponents *dateComponents = [calendar components:comps | |
| fromDate: date]; | |
| NSDate *finalDate = [calendar dateFromComponents:dateComponents]; | |
| NSLog(@"FINAL DATE %@",finalDate); | |
| FINAL DATE 2014-08-23 05:00:00 +0000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment