iOS::스위프트(swift)/RxSwift+MVVM
RxSwift 기초2 - dispose와 subject
RxSwift 기초 2편 - dispose/subject 구독 취소 disposing 우리가 무언가를 subscribe하기 시작하면 해당 subscribe는 value의 변동을 '항상' listening 상태로 둔다. 그 수가 많아지면 아무래도 메모리 측면에서 비효율을 야기할 것이다. 그러니 구독을 취소하는 방법도 배워보자. 기본형 예를 들어 다음과 같은 subscription1이 있다고 할 때, subscriber를 dispose하는 방법은 단순히 .dispose()를 원하는 시점에 호출하는 것 뿐이다. // subscription1을 Subscriber라고 한다. let subscription1 = observable4.subscribe(onNext: { (event) in print(event) }..
2021. 5. 21. 17:26
최근댓글