본문 바로가기
IOS (Swift, Objective-c)

[IOS] [Objective-C] Date Formatting, 날짜포멧

by bryan.oh 2022. 2. 8.
반응형

Objective-C Date Format

 

Formatter 정하기

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss:SSS"];

 

현재 시간 가져오기

NSDate *currentDate = [NSDate date];

 

현재 시간을 정해진 format 으로 변환

NSString *dateString = [formatter stringFromDate:currentDate];
NSLog(@"%@", dateString);
// 2022-02-06 21:14:38:509

 

728x90
반응형

댓글