RxDataSources
RxDataSources copied to clipboard
UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)
I have been debugging an issue where cell viewModel gets updated but cell reloading doesn't happen until user manually scrolls cell off screen. I have verified that IdentifiableType and Equatable...
If I change the tableView style to .group when I am using RxTableViewSectionedReloadDataSource, there's a problem with two section header. The pink area is header that I don't create. If...
Integrated via SPM. Xcode 12: `The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.2.99.` Support for iOS 8...
hi when running any Carthage command, we get an error : `Parse error: expected submodule commit SHA in output of task (ls-tree -z 5.0.0 Carthage/Checkouts/RxSwift) but encountered:` this seems to...
We are trying to override the default iOS VoiceOver read out during the scrolling of a UITableView with `RxTableViewSectionedReloadDataSource` binded to it. After extending our ViewController to `UIScrollViewAccessibilityDelegate` and implementing...
I am trying to make a form where the identifier for each item is the question ID. When a user answers a question, I don't update the identifier for the...
I want to reload the view state of all cells in a single section. How can I do that
Since Xcode11 we're seeing the warnings that were addressed in #75 return. The example project exhibits this warning also if you tap the `Customization using table view delegate` in the...
I am changing my data source type from "RxCollectionViewSectionedReloadDataSource" to "RxCollectionViewSectionedAnimatedDataSource". In RxCollectionViewSectionedReloadDataSource, making changes to the data source updates my header view But in RxCollectionViewSectionedAnimatedDataSource, it does not update...
Hi, I am experiencing the need to: A tableview needs to display the content section of an article and a list of comments for the article. So, the content and...