我有一个实现UICollectionViewDelegate协议的类.
我正在使用rac_signalForSelector:来注册这样的选择:
[self rac_signalForSelector:@selector(collectionView:didSelectItemAtIndexPath:)]
但是只有当我离开collectionView的一个空实现时它才会触发:didSelectItemAtIndexPath:像这样:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath { // Empty }
我尝试使用rac_signalForSelector:fromProtocol:也没有运气.
我正在使用Reactive Cocoa 2.2.4
谢谢,
的Mikkel