Can IGListKit be used with AsyncDisplayKit
https://github.com/facebook/AsyncDisplayKit
@modLX4 great question, and absolutely yes it can! In fact, I'm planning on adding an example using ComponentKit, AsyncDisplayKit, UIKit, and even WKWebView all within the same list. IMO that's the power of what we're using.
Now to use this with AsyncDisplayKit there are a few caveats:
ASCollectionViewIGListCollectionView + IGListAdapter and your own section controllersUICollectionView subclasses that use their own ASDisplayNodes internallyself.collectionContext?.reloadSectionController(self) to reload everything when the sizing is finishedThere's no best-practice for this yet until we try it though.
馃帀
Let's track that work at #94 馃憤
Most helpful comment
@modLX4 great question, and absolutely yes it can! In fact, I'm planning on adding an example using ComponentKit, AsyncDisplayKit,
UIKit, and evenWKWebViewall within the same list. IMO that's the power of what we're using.Now to use this with
AsyncDisplayKitthere are a few caveats:ASCollectionViewIGListCollectionView+IGListAdapterand your own section controllersUICollectionViewsubclasses that use their ownASDisplayNodes internallyself.collectionContext?.reloadSectionController(self)to reload everything when the sizing is finishedThere's no best-practice for this yet until we try it though.