Notice
Recent Posts
Recent Comments
Link
투케이2K
25. (Objective-C/objc) NSDate 사용해 24 시간 형식 현재 날짜 및 시간 출력 실시 본문
[개발 환경 설정]
개발 툴 : 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");
}
[결과 출력]
반응형
'Objective-C' 카테고리의 다른 글
27. (Objective-C/objc) extern const 사용해 외부 공유 가능한 상수 정의 및 호출 수행 실시 (0) | 2022.02.28 |
---|---|
26. (Objective-C/objc) instancetype 사용해 클래스 생성자 초기화 실시 (0) | 2022.02.28 |
24. (Objective-C/objc) init 클래스 생성자 초기화 실시 및 리턴 포맷 데이터 확인 (0) | 2022.02.28 |
23. (Objective-C/objc) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 - URLHost (0) | 2022.02.24 |
22. (Objective-C/objc) 프로토콜(Protocol) 사용해 헤더 정의 및 몸체 구현 실시 (0) | 2022.02.24 |
Comments