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.