RxDataSources
RxDataSources copied to clipboard
UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)
Hi guys, Got this exception, can't reproduce it, happens from time to time. Could be caused by me not releasing memory properly and pending animation happens when it shouldn't be?...
Good Afternoon, I adopted RxTableViewSectionedAnimatedDataSource for my table views, and most of the time works pretty well. However, I'm experiencing crashes while reloading the table view from scratch, which triggers...
I have a one section array. Whenever the user scrolls up the tableview, it loads the additional prefetched data from an API and adds the identical data to the end...
`RxTableViewSectionedAnimatedDataSource` performs batch updates not as a single batch but separately each update from the batch. The problem is https://github.com/RxSwiftCommunity/RxDataSources/blob/5458733cb4d2a1ca6a457804921a5fac4b72fca2/Sources/RxDataSources/RxTableViewSectionedAnimatedDataSource.swift#L102-L106 https://github.com/RxSwiftCommunity/RxDataSources/blob/5458733cb4d2a1ca6a457804921a5fac4b72fca2/Sources/RxDataSources/UI%2BSectionedViewType.swift#L60-L64 So it means each `difference` is handled in a...
Hello and thank you for the amazing project. I have some issues running the `Example` project though: Xcode version is 10.2 (10E125)
## Description Add a prebuilt carthage framework to every RxDataSources release to speed up build times when using it in apps. ## Motivation and Context I'm using carthage as dependency...
Hi, I'm using RxPickerViewAttributedStringAdapter to set up a UIPickerView: ``` let adapter = RxPickerViewAttributedStringAdapter( components: [], numberOfComponents: { _,_,_ in 1 }, numberOfRowsInComponent: { (_,_, items,_) -> Int in return...
I have a tableview with sections, and a segment controller. I want to show different data from different source on every segment. How should I do this? Is it possible...
I am trying to integrate Circle Ci and fastlane with my iOS app. I get this error on :x: error: Cycle in dependencies between targets 'RxDataSources' and 'RxCocoa'; building could...
Hi 👋 I have created a custom UICollectionViewLayout. ```swift protocol PinterestLayoutDelegate: class { func collectionView(_ collectionView: UICollectionView, heightForPhotoAtIndexPath indexPath: IndexPath) -> CGFloat } class PinterestLayout: UICollectionViewLayout { // MARK: Delegate...