Created
April 1, 2019 09:07
-
-
Save yonivav/e9eb4bdc145ac63d3d1e3b017199a096 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyCell: UITableViewCell { | |
private var disposeBag = DisposeBag() | |
override func prepareForReuse() { | |
super.prepareForReuse() | |
disposeBag = DisposeBag() // Destroys and disposes of old subscriptions, creates a new cell | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment