일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ios
- rxswift
- 리팩토링
- Refactoring
- 리펙토링
- 리펙터링
- map
- uiscrollview
- swift documentation
- 클린 코드
- 스위프트
- Human interface guide
- Xcode
- UICollectionView
- tableView
- clean architecture
- SWIFT
- ribs
- 애니메이션
- combine
- HIG
- collectionview
- uitableview
- Observable
- MVVM
- swiftUI
- RxCocoa
- UITextView
- Clean Code
- Protocol
- Today
- Total
목록footer (3)
김종권의 iOS 앱 개발 알아가기
UITableView의 대표적인 2가지 style header, footer가 없으면 둘 차이 x plain 스타일 - 스크롤 시 header가 상단에 고정 (sticky header 처럼 보여지는 효과) grouped 스타일 - 스크롤 시 header가 상단에 고정되지 않고, header가 있으면 자동으로 footer 영역이 생성 grouped 스타일 주의사항 보통 section이 고정되지 않게끔 구현해야하기 때문에 grouped 스타일을 많이 사용 grouped 스타일을 사용하고 header를 주면 개발자 의도에 상관없이 footer 영역이 자동으로 생성되므로 footer를 없애주는 코드가 따로 필요 (코드) import UIKit class ViewController: UIViewController..
1. UICollectionViewCompositionalLayout - 개념 (section, group, item) 2. UICollectionViewCompositionalLayout - 둘러보기1 (SupplementaryView, Header, Footer) 3. UICollectionViewCompositionalLayout - 개념 (DecorationView, Badge) 4. UICollectionViewCompositionalLayout - 개념 (orthogonalScrollingBehavior, 수평 스크롤, visibleItemsInvalidationHandler, NSCollectionLayoutAnchor) 5. UICollectionViewCompositionalLayout ..
Header, Section, Footer 개념 Section이 존재하고 Section 하나당 각각 Header와 Footer가 존재 예제에서는 Header가 Section1에서만 표출 Footer는 Section3에서만 표출하지 않는 형태 데이터 Entity 정의 import Foundation typealias MyItemList = [MyItem] struct MyItem { enum MyType { case a case b case c case d case e } let title: String let type: MyType } BaseView 정의 BaseTableViewCell class BaseTableViewCell: UITableViewCell { override init(style: U..