我在iPhone应用程序中使用集合视图来显示列表。 现在,当在索引路径方法中使用单元格行时,我使用set selected为yes。 这将使我的单元用户交互禁用。 我不知道背后的原因是什么。
答案 0 :(得分:2)
我通过添加方法解决了它。
[newCell setSelected:YES];
[collectionView selectItemAtIndexPath:indexPath animated:YES scrollPosition:UICollectionViewScrollPositionNone];
相应。
根据此链接UICollectionView Select and Deselect issue
中给出的内容感谢。