有没有办法将UICollectionViewCell设置为“不可选”,或者是通过委托方法"didSelectItemAtIndexPath"
执行此操作以查询正确的单元格类型的唯一方法?
提前致谢。
答案 0 :(得分:4)
UICollectionViewDelegate有一个方法:shouldSelectItemAtIndexPath
- > https://developer.apple.com/library/ios/documentation/UIKit/Reference/UICollectionViewDelegate_protocol/index.html#//apple_ref/occ/intfm/UICollectionViewDelegate/collectionView:shouldSelectItemAtIndexPath:
答案 1 :(得分:2)
您可以使用委托方法:
- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath
只为您不想选择的单元格的索引路径返回NO。