투케이2K

25. (Objective-C/objc) NSDate 사용해 24 시간 형식 현재 날짜 및 시간 출력 실시 본문

Objective-C

25. (Objective-C/objc) NSDate 사용해 24 시간 형식 현재 날짜 및 시간 출력 실시

투케이2K 2022. 2. 28. 09:50

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[testMain 함수]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("=============================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("=============================== \n");
    printf("\n");
    
    
    // [초기 변수 선언 실시]
    NSString *nowDate = @"";
    
    
    // [현재 날짜 얻어 오기 실시]
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    NSDate *now = [NSDate date];
    
    
    // [날짜 형식 포맷해서 출력 수행 실시 :: kk (24시간 형태)]
    [formatter setDateFormat:@"yyyy-MM-dd kk:mm:ss E 요일"];
    nowDate = [formatter stringFromDate:now];
    
    
    // [결과 출력 실시]
    printf("\n");
    printf("=============================== \n");
    printf("[현재 날짜 :: %s] \n", nowDate.description.UTF8String);
    printf("=============================== \n");
    printf("\n");
}
 

[결과 출력]


 

반응형
Comments