IGListKit
IGListKit copied to clipboard
IGListSectionControllerPushThread
In Class IGListAdapter
, method _updateObjects_:dataSource:
, there has a piece of code:
// push the view controller and collection context into a local thread container so they are available on init
// for IGListSectionController subclasses after calling [super init]
IGListSectionControllerPushThread(self.viewController, self);
I want to know what will happen if don't do this, thanks!
In other words, if self.viewController
and/or self
is released when executing this method, what will happen?