I write an extension for UICollectionView which will listen the delegate's shouldHighlightItemAt method,but it don't call.
public var shouldHighlightItem: ControlEvent<IndexPath> {
let source = self.delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:shouldHighlightItemAt:)))
.map { a in
return try self.castOrThrow(IndexPath.self, a[1])
}
return ControlEvent(events: source)
}
}
how to write an extension for UICollectionView of rx shouldHighlightItemAt?
You cannot use
methodInvoked(_:)
with a delegate method that has a non void return type.collectionView(_:shouldHighlightItemAt:)
expects you to return aBool
value. So you cannot usemethodInvoked(_:)
.If you have a look at the implementation of
methodInvoked(_:)
it gives you an explanation why this does not work:There is however a suggestion how you could achieve what you are trying to do:
In your case it would work like this:
In
RxCollectionViewDelegateProxy
you add the 'PublishSubject' and implement theUICollectionViewDelegate
method:In your UICollectionView RxExtension you can expose the desired Observable like this:
I have not tested this, I merely took it from the RxCocoa source code and modified it to fit your needs. So in theory this should work, but you might have to tweak it a little bit ;-)