Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tableView
- clean architecture
- Refactoring
- Observable
- swiftUI
- 리펙터링
- Clean Code
- 스위프트
- 애니메이션
- 리팩토링
- MVVM
- Protocol
- rxswift
- uitableview
- UICollectionView
- HIG
- SWIFT
- 클린 코드
- UITextView
- 리펙토링
- RxCocoa
- combine
- ios
- Xcode
- uiscrollview
- Human interface guide
- swift documentation
- collectionview
- ribs
- map
Archives
- Today
- Total
목록moveRow (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] tableView 셀 업데이트 (reloadData, insertRows, deleteRow, moveRow, insertSections, deleteSections, moveSection)
셀 업데이트 관련 메소드 메소드들은 실제 데이터를 바꾸는게 아닌 view만 변경하는것 Section 업데이트 Row 업데이트 tableView에서 전체 cell, section 업데이트 - reloadData() 해당 메소드를 호출 시 현재 보여지는 rows값들에 대해서만 레이아웃이 변경 주의: beginUpdates(), endUpdates() 사이에 행을 삽입하거나 삭제하는 메소드에서 reloadData()를 호출하면 안되는것을 주의 beginUpdates(), endUpdates() 내용 참고 cell에 관해 여러 작업이 필요한 경우 처리 방법 1번째 cell을 지우고, 2번째 셀을 변경하는 경우: 2번의 작업이므로 각각 tableView(_:numberOfRowsInSection:)에 변경되었다는..
iOS 응용 (swift)
2021. 9. 16. 23:32