Created
June 29, 2014 14:06
-
-
Save is8r/95c1c5688b1070f0c80e 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]; | |
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