일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- UITextView
- clean architecture
- 스위프트
- 애니메이션
- swiftUI
- ribs
- Xcode
- 리펙토링
- uiscrollview
- rxswift
- RxCocoa
- ios
- tableView
- combine
- collectionview
- swift documentation
- Clean Code
- Protocol
- Observable
- map
- Refactoring
- MVVM
- SWIFT
- 리펙터링
- UICollectionView
- Human interface guide
- 클린 코드
- HIG
- Today
- Total
목록FooterView (2)
김종권의 iOS 앱 개발 알아가기
하단 로딩 구현 아이디어1단계) Pagination: tableView의 willDisplay 델리게이트에서 마지막 인덱스 값인지 체크하고, 마지막 인덱스 값이면 페이지네이션 구현2단계) 하단로딩: willDisplay에서 페이지네이션이 되기 전에 tableView의 footerView에 indicator가 있는 UITableViewHeaderFooterView를 대입해주고, 데이터가 들어오면 다시 footerView.tableFooterView를 nil로 초기화하단 로딩 구현pagination 형태 구현class ViewController: UIViewController { private let tableView: UITableView = { let view = UITableView(..
1. UICollectionView의 SupplementaryView(HeaderView, FooterView, UICollectionReusableView) 2. UICollectionView의 DecorationView, SupplementaryView 커스텀 Layout SupplementaryView 개념 SupplementaryView는 UITableView에서의 Header와 Footer와 동일한 개념 Section 하나에 위 or 아래에 위치하는 뷰 * 아래부터 예시 코드들은 UI들을 편리하게 작성하기 위해 아래 프레임워크 사용 pod 'SnapKit' pod 'Then' SupplementaryView에 사용할 커스텀뷰 UITableView에서는 HeaderView or FoorterVie..