일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- swiftUI
- 스위프트
- HIG
- UICollectionView
- MVVM
- Observable
- 애니메이션
- UITextView
- ios
- rxswift
- Xcode
- 리펙토링
- uitableview
- Human interface guide
- map
- SWIFT
- uiscrollview
- collectionview
- Refactoring
- 클린 코드
- swift documentation
- clean architecture
- 리펙터링
- tableView
- RxCocoa
- Protocol
- Clean Code
- combine
- 리팩토링
- ribs
- Today
- Total
목록safearea (3)
김종권의 iOS 앱 개발 알아가기
safe area 경고 표출 보통 아래처럼 keyWindow로 구하면 warning 문구가 표출 // 'keyWindow' was deprecated in iOS 13.0: Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes let window = UIApplication.shared.keyWindow let safeAreaInsets = window?.safeAreaInsets iOS 13부터 Scene이라는 개념이 생겼는데, 이 scene에 접근해서 window를 가져와야함 safeAreaInset 구하는 방법 connectedScen..
* 예제에 사용된 UIScrollView+UIStackView 사용한 베이스 코드는 이전 포스팅 글(UIScrollView+UIStackView 구현) 참고 (only code: https://github.com/JK0369/ExScrollView_UIStackView) 예제에 앞서, UIScrollView의 background 색상을 blue, UIStackView를 green로 설정 ContentInset 스크롤 가장자리로 부터 contentView와의 거리 값 핵심은 inset을 주면 그만큼 UIScrollView의 content 크기도 증가 만약 contentInset값을 top 120을 주게된다면? 120만큼 content의 top으로부터 edge까지 거리가 부여되며, 이 거리만큼 content..
* (편의를 위해 SnapKit 사용) 하단 버튼 safe area 대응 방법 notch가 있는 경우와 없는 디바이스 모두 대응 방법 버튼의 layout left, right, bottom 모두 superview와 동일하도록 설정 self.button.snp.makeConstraints { $0.left.right.bottom.equalToSuperview() // TODO: height } 버튼의 크기를 60으로 맞추어야 하는 경우, 버튼의 상단을 safeArea의 하단으로부터 위로 60만큼 올라오도록 설정 self.button.snp.makeConstraints { $0.left.right.bottom.equalToSuperview() $0.top.equalTo(self.view.safeAreaLa..