일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- collectionview
- combine
- Xcode
- HIG
- uiscrollview
- MVVM
- clean architecture
- tableView
- 스위프트
- scrollview
- uitableview
- SWIFT
- swiftUI
- swift documentation
- 애니메이션
- ribs
- Refactoring
- Protocol
- Clean Code
- Human interface guide
- rxswift
- map
- UITextView
- ios
- 클린 코드
- RxCocoa
- UICollectionView
- 리펙토링
- Observable
- 리팩토링
- Today
- Total
목록UICollectionView (27)
김종권의 iOS 앱 개발 알아가기

구현 아이디어 UICollectionView 사용하고 layout은 IUCollectionViewFlowLayout 인스턴스 사용 UITextView를 갖는 커스텀 cell을 만든 후, 말풍선의 tipView는 CGMutablePath를 통해 그려주는 방식 커스텀 채팅 Cell 구현 class ChatMessageCell: BaseCollectionViewCell { // 구현 } 필요한 모델을 nested로 정의 enum ChatType: CaseIterable { case receive case send } struct Model { let message: String let chatType: ChatType } var model: Model? { didSet { bind() } } UI 컴포넌트 초..

UITableView에서 스크롤 이동 tableView.scrollToRow(at:at:animated:) 메서드 사용 UI적인 접근이 필요하므로 main 스레드에서 접근 @IBAction func didTapButton(_ sender: Any) { DispatchQueue.main.async { [weak self] in self?.tableView.scrollToRow(at: IndexPath(row: 77, section: 0), at: .bottom, animated: true) } } CollectionView에서 스크롤 이동 collectionView.scrollToItem(at:at:animated:) 메서드 이용 main 스레드로 접근 @objc func didTapMoveScrollB..

1. collectionView 개념 2. collectionView 구현, custom cell 3. collectionView 레이아웃 (UICollectionViewFlowLayout) CollectionView의 개념 CollectionView와 TableView의 차이점 CollectionView는 cell이 grid형태 CollectionView는 UICollectionViewLayout이라해서 cell 레이아웃 설정하는 부분이 따로 존재 tableView에서의 "row"라는 용어가 "Item"으로 사용 CollectionView와 TableView의 공통점 Section과 Cell이 존재하고 dataSource를 가지고 데이터처리와 UI 처리가 분리되어 있는 구조 TableView와 동일하게..