i want to dynamically update the content of the header information in my UIColectionView but i do not want to reload the whole section because this i done very frequently.
Any ideas for an elegant solution?
Thanks
i want to dynamically update the content of the header information in my UIColectionView but i do not want to reload the whole section because this i done very frequently.
Any ideas for an elegant solution?
Thanks
Copyright © 2021 Jogjafile Inc.
You can call
setNeedsDisplay
on the UIView (your header view) rather thanreloadData
orreloadSections:
on the UIColectionView.