UICollectionView how to deselect all

后端 未结 6 2190
被撕碎了的回忆
被撕碎了的回忆 2021-02-12 23:26

I have a FollowVC and FollowCell Setup with collection View. I can display all the datas correctly into my uIcollection view cell using the following code with no problem.

6条回答
  •  孤城傲影
    2021-02-12 23:53

    This answer may be useful in swift 4.2

     let selectedItems = followCollectionView.indexPathsForSelectedItems
    
     for (value in selectedItems) {
         followCollectionView.deselectItemAtIndexPath(value, animated:true)
         if let cell = followCollectionView.cellForItemAtIndexPath(value) as? FollowCell {
            cell.checkImg.hidden = true
         }
     }
    

提交回复
热议问题