我有一个收藏视图。我想以编程方式选择一个单元格。这是我使用的代码
[_collectionView selectItemAtIndexPath:[NSIndexPath indexPathForItem:currentSelectedVideo inSection:0] animated:YES scrollPosition:UICollectionViewScrollPositionNone];
由于某种原因,功能:
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
-(void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
未被调用,因此我用于显示所选单元格的视觉效果未显示在屏幕上。
这是正确的行为吗?