투케이2K

99. (Objective-C/objc) AudioServicesPlaySystemSound 사용해 디바이스 진동 (Vibrate) 기능 활성 실시 본문

Objective-C

99. (Objective-C/objc) AudioServicesPlaySystemSound 사용해 디바이스 진동 (Vibrate) 기능 활성 실시

투케이2K 2022. 9. 23. 08:03

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("==================================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("==================================== \n");
    printf("\n");
    
    
    /*
     ------------------------------------
     [요약 설명]
     ------------------------------------
     1. AudioServicesPlaySystemSound : 아이폰 진동 기능을 사용할 수 있습니다.
     ------------------------------------
     2. 필요 import :
     
     #import <AudioToolbox/AudioToolbox.h>
     ------------------------------------
     */
    
    
    // [try catch 구문 정의 실시]
    @try {
        
        // [진동 기능 동작 실시]
        AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

    }
    @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