In readme example I see ``` repository.name .bindTo(cell.nameLabel.bnd_text) .disposeIn(cell.onReuseBag) ``` What is `onReuseBag` and where can I find it? And what if I use `bnd_bag` instead? Will it cause memory leak?
Activity
srdanrasic commentedon Oct 20, 2015
That is something you need to create and dispose in prepareForReuse :)
bnd_bag
is automatically provided as an extension to NSObject and is disposed when object is deallocated.okla commentedon Oct 20, 2015
@srdanrasic got it, thanks!