반응형
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
반응형
'IOS (Swift, Objective-c)' 카테고리의 다른 글
[IOS] M1 에서 pod install 시 ruby 관련 오류 (0) | 2022.08.13 |
---|---|
[IOS] [Objective-C] 함수, function, method (0) | 2022.02.08 |
[IOS] [Objective-C] 10진수를 16진수 문자열로 바꾸기 (0) | 2022.02.06 |
[IOS] Objective-C Random String, UUID (0) | 2022.02.06 |
[IOS] Objective-C Realm 사용 RLMArray 써보기 (0) | 2022.02.06 |
댓글