CollectionView SwipecollectionCell after edit collectionView not resigned
Solution:
Before you have to call the below method don't reload the cell.
func hideSwipeCollectionViewCells() {
print(CollView.indexP
for cell in workSpaceCollView.visibleCells {
if let cell = cell as? SwipeCollectionViewCell {
cell.hideSwipe(animated: false)
}
}
}
Comments
Post a Comment