-(void) scrollViewDidScroll:(UIScrollView *)scrollView { PO(NSStringFromCGPoint(self.tableView.contentOffset)); PO(NSStringFromUIEdgeInsets(self.tableView.conten
Lets say we have a SpriteKit scene where you have a gesture recognizer and you set its delegate.
scene
gesture recognizer
delegate
Then you dealloc this scene and its recognizer from its controller.
dealloc
recognizer
controller
It would lead to crash if the delegate method was called in scene during this process.