You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2020. It is now read-only.
Another suggestion 🙂
Sometimes we can have favourite buttons inside cells. When we tap this button we have some animation. To have consistent table we need to update our dataSource. But I don't want to call reload data and brake the animation. I want to a silent update of the data source just to be sure, that UI and dataSource are the same. For this purpose it would be great to be able to do something like director?.silentUpdate(model: ModelProtocol, at indexPath: IndexPath)
You did really great job for this library and documentation.
I currently implemented by using this this.director?.section(at: 0)?.set(models: models)
Without calling reload data. But it would be nice to update only one model this way
Another suggestion 🙂
Sometimes we can have favourite buttons inside cells. When we tap this button we have some animation. To have consistent table we need to update our dataSource. But I don't want to call reload data and brake the animation. I want to a silent update of the data source just to be sure, that UI and dataSource are the same. For this purpose it would be great to be able to do something like
director?.silentUpdate(model: ModelProtocol, at indexPath: IndexPath)You did really great job for this library and documentation.
I currently implemented by using this
this.director?.section(at: 0)?.set(models: models)Without calling reload data. But it would be nice to update only one model this way