Skip to content

Instantly share code, notes, and snippets.

@is8r
Created June 29, 2014 14:05
Show Gist options
  • Save is8r/33a2f8542a70528597da to your computer and use it in GitHub Desktop.
Save is8r/33a2f8542a70528597da to your computer and use it in GitHub Desktop.
//時間を算出
NSDate* now = [NSDate date];
int hour = [[now dateWithCalendarFormat:nil timeZone:nil] hourOfDay];
int min = [[now dateWithCalendarFormat:nil timeZone:nil] minuteOfHour];
int sec = [[now dateWithCalendarFormat:nil timeZone:nil] secondOfMinute];
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