투케이2K

41. (Objective-C/objc) AppDelegate 디바이스 화면 세로 방향 고정 처리 실시 - supportedInterfaceOrientationsForWindow 본문

Objective-C

41. (Objective-C/objc) AppDelegate 디바이스 화면 세로 방향 고정 처리 실시 - supportedInterfaceOrientationsForWindow

투케이2K 2022. 7. 5. 11:00

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [디바이스 세로 화면 고정 처리]
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    printf("\n");
    printf("==================================== \n");
    printf("[HelloWorldAppDelegate >> supportedInterfaceOrientationsForWindow() :: 디바이스 화면 세로 모드 고정 실시] \n");
    printf("==================================== \n");
    printf("\n");
    
    // [세로 방향 고정]
    return UIInterfaceOrientationMaskPortrait;
}
 

[결과 출력]

 

반응형
Comments