RxDataSources
RxDataSources copied to clipboard
UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)
``` roomVM.items .bind(to: collectionView.rx.items) {[weak self] (collectionView, row, element) in let indexPath = IndexPath(row: row, section: 0) let cell = collectionView.dequeueReusableCell( withReuseIdentifier: RoomCell.identifier, for: indexPath) as! RoomCell cell.config(element) return cell...
i want to scroll uitableview in middle of selected index when insert and scroll to top when delete how can i handle that
enhancement Please forgive my poor English. expected ``` struct CustomData { let id = UUID() var anInt: Int var aString: String var aCGPoint: CGPoint } extension CustomData: IdentifiableType, Hashable {...
After having to upgrade to the newest version of xcode 10 beta (got [ITMS-90534](https://stackoverflow.com/questions/44323009/error-itms-90534-invalid-toolchain) error when trying to create a TestFlight build) I am no longer able to build, for...
Hello I have an issue building project with iPhone4s Simulator (9.0) My project-swift language is 3.3. ``` - RxDataSources (1.0.4): - RxCocoa (~> 3.0) - RxSwift (~> 3.0) ``` I...
I have tried to test the memory leak using `RxSwift.Resources.total` with `RxTableViewSectionedReloadDataSource` but it never completely free up resources after I close the ViewController. I have followed the [example](https://github.com/RxSwiftCommunity/RxDataSources/blob/master/Example/Example4_DifferentSectionAndItemTypes.swift) provided...
From [Apple docs](https://developer.apple.com/support/third-party-SDK-requirements/): > Starting in spring 2024, you must include the privacy manifest for any SDK listed below when you submit new apps in App Store Connect that include...
Support accessing safe indexing for datasource
Hi, I'm using RxTableViewSectionedAnimatedDataSource to create table view. One of the cells have textview. I subscribe to changes in textview text as follows: ``` textView.rx.text.orEmpty .subscribe(onNext: { [weak self] text...