RxSwiftCommunity / RxDataSources

UITableView and UICollectionView Data Sources for RxSwift (sections, animated updates, editing ...)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lack of support UICollectionView delegate method `contextMenuConfigurationForItemAt`or `contextMenuConfigurationForItemsAt`

nikita-harseko-gismart opened this issue · comments

Hello, how can i implement the delegate method contextMenuConfigurationForItemAtor contextMenuConfigurationForItemsAt using RxDataSource? Maybe you will include support for it in the next version?

func collectionView(
   _ collectionView: UICollectionView, 
   contextMenuConfigurationForItemAt indexPath: IndexPath,
   point: CGPoint) -> UIContextMenuConfiguration?

or iOS 16.0+ version

optional func collectionView(
    _ collectionView: UICollectionView,
    contextMenuConfigurationForItemsAt indexPaths: [IndexPath],
    point: CGPoint
) -> UIContextMenuConfiguration?