skip to Main Content

Xcode – RXSwift – RxCollectionViewSectionedReloadDataSource – Drag & drop move (Reorder)

I have used RxCollectionViewSectionedReloadDataSource to load my data into UICollectionView. let dataSource = RxCollectionViewSectionedReloadDataSource<SectionModel<String, WorkGroup>>( configureCell: { (_, collectionView, indexPath, item) in guard let cell = collectionView .dequeueReusableCell(withReuseIdentifier: WorkGroupCell.identifier, for: indexPath) as? WorkGroupCell else { return WorkGroupCell() } cell.viewModel =…

VIEW QUESTION
Back To Top
Search