일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- uitableview
- MVVM
- 리펙터링
- 클린 코드
- 리펙토링
- 애니메이션
- HIG
- collectionview
- 스위프트
- swift documentation
- RxCocoa
- Xcode
- UICollectionView
- rxswift
- swiftUI
- combine
- tableView
- map
- Clean Code
- SWIFT
- uiscrollview
- Observable
- Human interface guide
- clean architecture
- ios
- Protocol
- ribs
- UITextView
- Refactoring
- 리팩토링
- Today
- Total
목록마진 (2)
김종권의 iOS 앱 개발 알아가기
* 예제에 사용된 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..
스위프트에서의 layoutMagins 개념 현재 뷰의 경계와 content와의 여백 개념 혼동 주의: 현재 뷰 경계와 superview와의 여백이 아님을 주의 storyboard에서 layoutMargins 확인 방법 Editor > Canvas >Layout Rectangles layout 설정 시 "Constrain to margins" 옵션을 체크한 후 autolayout적용 시 view 내부에 margin값을 고려한 배치 cf) code에서 layoutMarginsGuide 주는 방법: layoutMarginsGuide. 으로 접근 imageView.leadingAnchor.constraint(equalTo: layoutMarginsGuide.leadingAnchor) 내부 label이 margi..