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
- 애니메이션
- swiftUI
- 리펙토링
- uiscrollview
- MVVM
- Xcode
- Refactoring
- combine
- Clean Code
- 리펙터링
- Observable
- UICollectionView
- 클린 코드
- Human interface guide
- 스위프트
- uitableview
- rxswift
- RxCocoa
- collectionview
- swift documentation
- ribs
- UITextView
- 리팩토링
- ios
- tableView
- map
- Protocol
- SWIFT
- HIG
- clean architecture
Archives
- Today
- Total
목록extendable tableView (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] extendable tableView 구현 방법 (동적으로 늘어나는 셀 구현), reloadRows(at:with:)
Extendable tableVeiw 구현 아이디어 셀의 UI는 stackView에 label을 넣고 hidden을 on/off하며 펼쳐지거나 줄어들게끔 구현 데이터 소스 타입에 isDescHidden와 같이 플래그를 넣고, 확장하고 싶은 경우 isDescHidden을 false로 한 다음 해당 데이터 부분만 reloadRows(at:with:)을 통해 업데이트 reloadRows(at:with:)에서 애니메이션도 지정할수 있는데, 아래로 팽창하듯이 늘어나는 옵션은 UITableView.RowAnimation.automatic 사용 // 해당 셀 업데이트 tableView.reloadRows(at: [IndexPath(row: indexPath.row, section: 0)], with: UITableV..
UI 컴포넌트 (swift)
2022. 12. 25. 22:50