프로그래밍 PROGRAMMING/IOS

[IOS/Swift] 아이폰/아이패드 세로모드, 가로모드 고정하기

매운할라피뇽 2023. 11. 10. 09:35
반응형

App 을 실행할때 세로모드 혹은 가로모드로만 고정하고 싶은 경우 아래 설정화면으로 들어갑니다

 

설정화면은 우측 폴더구조에서 프로젝트명을 선택하면 들어가집니다. 거기서 Build Settings > Customized 를 들어가서 Supported Interface Orientation (iPhone) 을 선택하면 여러개의 옵션이 기본으로 들어가 있는 것을 확인할 수 있습니다. 

 

UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight

 

기본으로 위 네 개의 옵션이 들어가있는데, 수직모드로 고정하고 싶으면 UIInterfaceOrientationPortrait, 수평모드로 고정하고 싶다면 방향에 따라 UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight 이 옵션만 남겨놓으면 됩니다.

 

 

반응형