iPad에서 Device Orientation을 Portrait 전용으로 만드는 방법
운영 환경
Deployment Target: 11.0
대응 방법
Requires full screen
Requires full screen` 에 체크합니다.
`
이 설정을하면 멀티 태스킹 기능을 사용할 수 없게되므로 이해하신 후에 설정하십시오.
덧붙여서 스크린샷에서 Portrait
에만 체크가 되어 있습니다만, 이 설정에서도 iPad에서는 Portrait
이외에도 됩니다.
supportedInterfaceOrientations
대응이 필요한 ViewController로 다음의 구현을 실시합니다
override var shouldAutorotate: Bool { return true }
override var supportedInterfaceOrientations: UIInterfaceOrientationMask { return .portrait }
이 두 가지로 iPad에서 Device Orientation을 Portrait만으로 할 수 있었습니다.
참고한 기사
Requires full screen
Requires full screen` 에 체크합니다.
`
이 설정을하면 멀티 태스킹 기능을 사용할 수 없게되므로 이해하신 후에 설정하십시오.
덧붙여서 스크린샷에서
Portrait
에만 체크가 되어 있습니다만, 이 설정에서도 iPad에서는 Portrait
이외에도 됩니다.supportedInterfaceOrientations
대응이 필요한 ViewController로 다음의 구현을 실시합니다
override var shouldAutorotate: Bool { return true }
override var supportedInterfaceOrientations: UIInterfaceOrientationMask { return .portrait }
이 두 가지로 iPad에서 Device Orientation을 Portrait만으로 할 수 있었습니다.
참고한 기사
Reference
이 문제에 관하여(iPad에서 Device Orientation을 Portrait 전용으로 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/jumperson/items/bcee16bde8b7d4b6fdf6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)