我对 UICollectionView 有疑问。下面的代码是返回获取某个点的单元格(CGPoint)
CollectionViewCell* cell = (CollectionViewCell*) [mCollectionView cellForItemAtIndexPath: [mCollectionView indexPathForItemAtPoint:point]];
if (cell)
NSLog(@"Cell exists");
else
NSLog(@"Cell doesn't exist");
如果 UICollectionView 保持不动,这将返回一个有效的单元格。如果向下滚动,则返回 nil。我不确定是什么问题。UICollectionView 滚动工作正常。collectionview 单元格没有问题。
请问有人可以帮我吗?