//Date Type yyyy-MM-dd HH:mm:ss
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy"];
int tyear = [[dateFormatter stringFromDate:[NSDate date]] intValue];
[dateFormatter setDateFormat:@"MM"];
int tmonth = [[dateFormatter stringFromDate:[NSDate date]] intValue];
[dateFormatter setDateFormat:@"dd"];
int tday = [[dateFormatter stringFromDate:[NSDate date]] intValue];
[dateFormatter setDateFormat:@"HH"];
int thour = [[dateFormatter stringFromDate:[NSDate date]] intValue];
[dateFormatter setDateFormat:@"mm"];
int tminute = [[dateFormatter stringFromDate:[NSDate date]] intValue];
[dateFormatter setDateFormat:@"ss"];
int tsecond = [[dateFormatter stringFromDate:[NSDate date]] intValue];
NSLog(@"NOW() = %d%d%d",thour,tminute,tsecond);
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[ios] 테이블셀 이미지때문에 느려짐 LazyTableImages (0) | 2012.11.30 |
---|---|
[ios] tableview 내용 편집, nibWithNibName (0) | 2012.11.22 |
[iOS]GestureRecognizer 터치이벤트 와 테이블에 적용방법 (0) | 2012.11.19 |
[ios] llvm-gcc-4.2 failed with exit code 1 (0) | 2012.11.13 |
[ios] 푸시 한글 깨짐 (0) | 2012.11.13 |