Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- RxCocoa
- 리펙토링
- ribs
- 리펙터링
- Observable
- 클린 코드
- Human interface guide
- Xcode
- collectionview
- uiscrollview
- tableView
- clean architecture
- swiftUI
- 리팩토링
- uitableview
- rxswift
- Protocol
- swift documentation
- HIG
- MVVM
- 스위프트
- map
- UICollectionView
- Refactoring
- UITextView
- SWIFT
- ios
- Clean Code
- combine
- 애니메이션
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 앱 방향 전환 설정 (세로, portrait, 가로, landscape) 본문
디폴트로 저장되어 있는 방향 전환
- info.plist에 명시된 내용
간단하게 설정 방법: AppDelegate에서 설정
- AppDelegate 우선순위가 가장 높기 때문에 info.plist의 값에 영향을 받지 않고 정해짐
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
return [.portrait]
}
- 배열에 넣어주면 해당되는 옵션 추가
'iOS 기본 (swift)' 카테고리의 다른 글
Comments