在 UICollectionViewCell 上双击手势?
问题描述:
我想双击 UICollectionViewCell 以喜欢该个人资料,就像 OkCupid App 一样.我已经在集合视图上应用了点击手势,但它不起作用.
I want to double tap on the UICollectionViewCell to like the profile just like OkCupid App. I have applied Tap Gesture on Collection View but it does not work.
当我每次尝试双击单元格时 didSelectCollectionViewCell
方法调用.
When I try to double tap the cell every time didSelectCollectionViewCell
Method call.
答
您得到的错误:无法调用非函数类型 'UICollectionView!' 的值是因为你尝试使用了错误的方法.
The error which you got: Cannot call value of non-function type 'UICollectionView!' is because you have try to use wrong method.
请尝试使用这个:
var selectedIndexPath: NSIndexPath = self.collectionView.indexPathForItemAtPoint(pointInCollectionView)