Skip to content

Commit

Permalink
[#88] 순환참조 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyuni committed Oct 3, 2021
1 parent 295eebe commit 28fa9a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ class TextFieldCaseTestViewModel {
private func bind() {
text
.debounce(.milliseconds(300), scheduler: MainScheduler.instance)
.subscribe(onNext: { text in
self.textDidChanged(to: text)
.subscribe(onNext: { [weak self] text in
self?.textDidChanged(to: text)
})
.disposed(by: bag)
}
Expand Down

0 comments on commit 28fa9a0

Please sign in to comment.