We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
README
IGListKit
main
iOS 15
1.11.3
13.4.1
As a workaround you could disable batchContext.reload(self) on iOS 15, loosing animation updates.
batchContext.reload(self)
override func didSelectItem(at index: Int) { collectionContext?.performBatch( animated: true, updates: { [weak self] batchContext in guard let self = self else { return } self.expanded.toggle() if #available(iOS 15, *) { // do nothing } else { batchContext.reload(self) } }, completion: { [weak self] succeded in guard let self = self else { return } self.collectionContext?.scroll( to: self, at: index, scrollPosition: .top, animated: true ) }) }
Marslink_Final.zip Screen Recording 2022-07-05 at 09.05.33.zip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New issue checklist
README
and documentationGeneral information
IGListKit
version:main
branchiOS 15
1.11.3
13.4.1
Debug information
As a workaround you could disable
batchContext.reload(self)
on iOS 15, loosing animation updates.Marslink_Final.zip
Screen Recording 2022-07-05 at 09.05.33.zip
The text was updated successfully, but these errors were encountered: