-
Notifications
You must be signed in to change notification settings - Fork 498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HeaderView is not updating when collectionview's datasource is changed. #328
Comments
I am having the same issue. The header is updated when the view is recycled. |
@ashok1089 Are you sure, you configured exactly identifier type of header? |
Below is the code I am using to configure HeaderView. |
Let try to implement decideViewTransition: { (datasource, collectionView, changeset ) in {} |
awesome! that works. thanks |
I experienced the same problem with a dynamic header, and upon searching I found this issue and also this answer from StackOverflow. What I noticed is that on
|
I am changing my data source type from "RxCollectionViewSectionedReloadDataSource" to "RxCollectionViewSectionedAnimatedDataSource".
In RxCollectionViewSectionedReloadDataSource, making changes to the data source updates my header view But in RxCollectionViewSectionedAnimatedDataSource, it does not update my header view.
Is this an expected behavior, please help.
The text was updated successfully, but these errors were encountered: