Post

Replies

Boosts

Views

Activity

Reload only Footer of Section of CollectionView in Swift
I am trying to reload only footer of collectionView of specific section for chat Application to show updated time. But unfortunately I ended up reloading whole Section using below code: Swift let sections = self.collectionView.numberOfSections let indexSet = IndexSet(integer: sections-1) self.collectionView.reloadSections(indexSet) But above code can take long time to load particular section if we have long chat. Please help me out.
2
1
3.9k
Feb ’21