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
- UICollectionView
- ribs
- MVVM
- UITextView
- tableView
- 스위프트
- 클린 코드
- 리팩토링
- collectionview
- Xcode
- combine
- HIG
- RxCocoa
- uitableview
- 리펙터링
- swiftUI
- 애니메이션
- SWIFT
- uiscrollview
- swift documentation
- rxswift
- Refactoring
- Human interface guide
- Clean Code
- clean architecture
- Protocol
- ios
- 리펙토링
- Observable
- map
Archives
- Today
- Total
목록스크롤 이동 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UITableView, UICollectionView, 스크롤 이동 시키는 방법
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..
iOS 응용 (swift)
2021. 10. 21. 00:04