RxSwiftCommunity / RxDataSources

UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)
MIT License
3.07k stars 485 forks source link

Reload all but one section #406

Open gfpacheco opened 2 years ago

gfpacheco commented 2 years ago

The first section of my collection view has a search bar in it, and I want the rest of the collection to be updated when the user types in something.

Problem: every time the user inputs one letter, the keyboard is dismissed because the collection view reloads

Is there a way to not reload one section (maybe using reloadSections) when using RxDataSources? Or do I have to implement the delegate and data source manually?