Created
June 29, 2014 14:05
-
-
Save is8r/33a2f8542a70528597da 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* 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