Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Created August 7, 2014 10:33
Show Gist options
  • Save maxehmookau/859ce516dd92d93f246b to your computer and use it in GitHub Desktop.
Save maxehmookau/859ce516dd92d93f246b to your computer and use it in GitHub Desktop.
Convert military time to NSDate (NSNumber Category)
- (NSDate *)sub_DateFromMilitaryTime {
NSDate *newDate;
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setMinute:[self intValue] % 100];
[comps setHour:floor(self.intValue / 100)];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
newDate = [gregorian dateFromComponents:comps];
return newDate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment