-
diffable datasource Error - Inconsistent associations for moves 에러ios 2022. 11. 26. 23:37
diffable data source 를 사용해 컬렉션뷰를 만들던 중, Inconsistent associations for moves 문구와 함께 에러가 나 정리
원인 - Hashable을 채택한 struct에서 == 메서드를 별도 구현했는데, 에러의 원인이였다.
1. Equatable의 == custom implementation 을 제거해 해결.
2. Equatable의 custom implementation만 작성하여, diffing algorithm에 confuse를 끼침
- == 메서드와 함께 hash(into:) 도 정의하면 되지 않을까..'ios' 카테고리의 다른 글
Swift / iOS앱 Tuist 적용기 (0) 2023.02.22 Compositional Layout, Unable to simultaneously satisfy constraints. (0) 2022.11.27 NSMutableAttributedString extension (0) 2022.07.05 SnapKit, RxSwift 적용 예제 (0) 2022.04.28 Swift,iOS - SnapKit (0) 2022.04.26