美文网首页
iOS 14.2系统下shouldSelectItemAtInd

iOS 14.2系统下shouldSelectItemAtInd

作者: BoASir | 来源:发表于2021-02-02 19:56 被阅读0次

在iOS14.2系统下,UICollectionview会自动触发下面的方法:

-(BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath;

解决方案:
苹果暂未给出方案,苹果官方问题
我们的做法是,将shouldSelectItemAtIndexPath方法收拢到didSelectItemAtIndexPath:

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath;

相关文章

网友评论

      本文标题:iOS 14.2系统下shouldSelectItemAtInd

      本文链接:https://www.haomeiwen.com/subject/obzloktx.html