ListBindingSectionController did not use the current cell
New issue checklist
- [ X] I have reviewed the
READMEand documentation - [ X] I have searched existing issues and this is not a duplicate
General information
IGLIstKit 3.4 iOS 13 Xcode 5 Swift
Debug information
I did some testing for ListBindSectionController, I am a little bit surprised that when we call update if anything we need to update, iglistkit did not try to grab the same visible cell which the section controller binds to. Instead, it try to reuse other cells. Would it be better to get visible cell and directly call bindViewModel on the same cell?
The only downside I can see is that if cell height needs to change, it wont be able to deal with it
Would it be better to get visible cell and directly call bindViewModel on the same cell?
Sounds like a bad idea here, since the whole point of ListBindSectionController is to avoid reusing other cells for updates. Could u share me some sample code so I can help further? How many items do you have for you BindSection?