투케이2K

69. (Objective-C/objc) UIDevice systemVersion 사용해 현재 디바이스 소프트웨어 OS 버전 확인 본문

Objective-C

69. (Objective-C/objc) UIDevice systemVersion 사용해 현재 디바이스 소프트웨어 OS 버전 확인

투케이2K 2022. 9. 21. 09:07

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("==================================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("==================================== \n");
    printf("\n");
    
    
    /*
     ------------------------------------
     [요약 설명]
     ------------------------------------
     1. UIDevice 객체를 사용해서 디바이스 접근 및 기기 정보 값을 확인 할 수 있습니다
     ------------------------------------
     2. systemVersion 는 디바이스 현재 소프트웨어 os 버전을 확인할 수 있습니다
     ------------------------------------
     */
    
    
    // [try catch 구문 정의 실시]
    @try {
        
        // [UIDevice currentDevice systemVersion 사용해 디바이스 현재 소프트웨어 os 버전 확인]
        NSString *osVersion = [[UIDevice currentDevice] systemVersion];
        
        
        // [로그 출력 실시]
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> try :: 로직 처리 결과 확인] \n");
        printf("[osVersion :: %s] \n", osVersion.description.UTF8String);
        printf("==================================== \n");
        printf("\n");
    }
    @catch (NSException *exception) {
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> catch :: 예외 상황 확인] \n");
        printf("[name :: %s] \n", exception.name.description.UTF8String);
        printf("[reason :: %s] \n", exception.reason.description.UTF8String);
        printf("==================================== \n");
        printf("\n");
    }
}
 

[결과 출력]


반응형
Comments