Vinh Le Khanh

Results 6 comments of Vinh Le Khanh

hi i tried something like this but also cannot make the select and deselect action to work ``` sharingState .filter{$0 == true} .withLatestFrom(Observable.zip(collectionView.rx.itemSelected, collectionView.rx.modelSelected(Photo.self))) .map{Reactor.Action.select(photo: $0.1)} .bind(to: reactor.action) .disposed(by: disposeBag)...

Any suggestion that can make the cell selection and deselection work? i just want to map to select and deselect action in Reactor. right after i map something like map{Reactor.Action.select(photo:...

Should we add any method to the cell to handle select, deselect? seem selection after map to Action is not functioning anymore

H i have tried this ``` self.collectionView.rx.itemSelected .map{Reactor.Action.select($0.row)}.bind(to: reactor.action).disposed(by: disposeBag) self.collectionView.rx.itemDeselected .map{Reactor.Action.deselect($0.row)}.bind(to: reactor.action).disposed(by: disposeBag) ``` In reactor Action: ``` case select(_ index: Int) case deselect(_ index: Int) ``` Mutation: ```...

Find out there is a problem with` RxCollectionViewSectionedReloadDataSource` if we use `RxCollectionViewSectionedAnimatedDataSource` then no issue but there is a problem with duplicate item in Rxdatasource. need to have a function...

thanks, @bobgodwinx . How do we use the wrapper? just call it and subscribe or bind to UITableView? Will it provide update to UI based on data changes?