Removing underscore

This commit is contained in:
Max Gu 2016-02-19 22:21:07 -08:00
parent 548b600504
commit 67c8cd5ccf
2 changed files with 1 additions and 3 deletions

View File

@ -10,6 +10,4 @@
@interface ASCellNode (Internal)
- (void)_visibleNodeDidScroll:(UIScrollView *)scrollView withCellFrame:(CGRect)cellFrame;
@end

View File

@ -542,7 +542,7 @@ static NSString * const kCellReuseIdentifier = @"_ASCollectionViewCell";
if (cellNode.neverShowPlaceholders) {
[cellNode recursivelyEnsureDisplaySynchronously:YES];
}
if (ASSubclassOverridesSelector([ASCellNode class], [cellNode class], @selector(_visibleNodeDidScroll:withCellFrame:))) {
if (ASSubclassOverridesSelector([ASCellNode class], [cellNode class], @selector(visibleNodeDidScroll:withCellFrame:))) {
[_cellsForVisibilityUpdates addObject:cell];
}
}