I have to insert multiple rows in my ASTableNode on index position 0 without animation and maintaining the users' visible scroll position.
In the latest AsyncDisplayKit (2.2.1) it is working perfectly when using
- tableNode.view.automaticallyAdjustsContentOffset = true
- tableNode.insertRows(at: prependIndexPaths, with: .none)
In Texture (2.3) I have following bugs
- scroll position is jumping when inserting at index position 0 although using tableNode.view.automaticallyAdjustsContentOffset = true
- the inserted rows have a transition animation although using UITableViewRowAnimation.none
I have to insert multiple rows in my ASTableNode on index position 0 without animation and maintaining the users' visible scroll position.
In the latest AsyncDisplayKit (2.2.1) it is working perfectly when using
In Texture (2.3) I have following bugs