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 |
Tags
- Large File Storage
- rib
- Ribs
- iOS Target
- RxSwift
- RIBs Tutorial
- RxCocoa
- 로버트마틴형
- swiftdocs
- App Signing
- Automatically manage signing
- 대머리깃허브
- Dependency Rule
- Apple Certificate
- SWIFT
- Git Large File Storage
- memory safety
- 잡초가득블로그
- 메모리 접근 충돌
- 클린아키텍쳐
- ios
- Concurrent
- iOS 버전 점유율
- windowScene
- Dispatch.main.sync
- UICoordinateSpace
- conflicting access to memory
- Github file size
- in-out
- coordinateSpace
Archives
- Today
- Total
빙수왕의 개발일지
RxSwift 테이블뷰 다시 바인드할 때 오류 본문
문제상황
한 tableView 안에서 어떤 상태 flag 값에 따라 셀 class와 뿌려지는 내용(리스트)를 바꾸고 싶었다.
-> 다시 바인드를 했다.
-> 오류가 났음!
오류 내용
Maybe delegate was already set in xib or storyboard and now it's being overwritten in code.
해결방안
dataSource와 delegate를 초기화시킨 후 다시 bind해줘야 한다.
tableView.delegate = nil
tableView.dataSource = nil
수정 전 코드
수정 후 코드
중복으로 붙여넣었지만.. 아무튼 중요한건
bind를 다시 해주기 전, delegate와 dataSource에 nil을 넣어줘야 한다는 것이다.
출저
https://github.com/RxSwiftCommunity/RxDataSources/issues/185
'개발 > iOS' 카테고리의 다른 글
Memory Safety - #1 Conflicting Access to Memory (0) | 2021.08.05 |
---|---|
In-Out Parameters, 인아웃 파라미터에 대하여 (0) | 2021.08.02 |
info.plist 이동 후 해야할 작업 (0) | 2021.06.25 |
RxSwift, RxCocoa, RxRelay의 Observable, Subject, Driver, Signal, Relay 표로 정리 (0) | 2021.06.24 |
XCode에서 Breakpoint가 안먹고 디버깅이 안될 때 (0) | 2021.06.24 |