Remove unused cell node method (#278)

This commit is contained in:
Adlai Holler
2017-05-15 16:36:29 -07:00
committed by GitHub
parent 7df1a20c5f
commit 9c07aff695
3 changed files with 0 additions and 38 deletions

View File

@@ -1829,21 +1829,6 @@ static NSString * const kCellReuseIdentifier = @"_ASTableViewCell";
[self setNeedsLayout];
}
- (void)nodeDidRelayout:(ASCellNode *)node sizeChanged:(BOOL)sizeChanged
{
ASDisplayNodeAssertMainThread();
if (!sizeChanged || _queuedNodeHeightUpdate || _remeasuringCellNodes) {
return;
}
_queuedNodeHeightUpdate = YES;
[self performSelector:@selector(requeryNodeHeights)
withObject:nil
afterDelay:0
inModes:@[ NSRunLoopCommonModes ]];
}
// Cause UITableView to requery for the new height of this node
- (void)requeryNodeHeights
{