[ACCEPTED]-UICollectionView reloadData But View Blinks-uicollectionview
Accepted answer
Well I found the answer though it's been 2 so long from the question.
Don't use reloadData()
nor 1 reloadItems()
.
Use collectionView.reloadSections(IndexSet(integer: yourSectionIndex))
. The animation will happen smoothly.
self.collectionView.reloadItems(at: self.collectionView.indexPathsForVisibleItems)
Helped for me.
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.