Skip to content

Instantly share code, notes, and snippets.

@is8r
Created June 29, 2014 14:06
Show Gist options
  • Save is8r/95c1c5688b1070f0c80e to your computer and use it in GitHub Desktop.
Save is8r/95c1c5688b1070f0c80e to your computer and use it in GitHub Desktop.
//時間を算出
NSDate* now = [NSDate date];
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"HH"];
int hour = [[dateFormatter stringFromDate:now] intValue];
[dateFormatter setDateFormat:@"mm"];
int min = [[dateFormatter stringFromDate:now] intValue];
[dateFormatter setDateFormat:@"s"];
int sec = [[dateFormatter stringFromDate:now] intValue];
NSLog(@"%i:%i:%i",hour,min,sec);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment