반응형
How to Set - 세로모드 고정
Step1.
Project - General - Device Orientation - Potrait 체크
만약 여기서 해결이 안되는 경우, Step2 진행
Step2.
// AppDelegate.swift
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
// 세로방향 고정
return UIInterfaceOrientationMask.portrait
}
반응형
'모바일앱 > iOS' 카테고리의 다른 글
App의 기본구조 (0) | 2023.02.11 |
---|---|
ios에서 싱글톤 만들기 (0) | 2023.02.08 |
UIImage - 경로를 통해 이미지 다운로드하여 동기, 비동기처리하기 (0) | 2022.12.26 |
refresh control 사용하기 (0) | 2022.12.13 |
Date로 두 개의 시간차 구하기 (0) | 2022.11.24 |
간단한 MVVM구조 예제 (0) | 2022.11.23 |
앱과 웹간 소통방법(1) (0) | 2022.11.18 |
여러가지 접근권한요청 (0) | 2022.11.17 |