Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit cc15d74

Browse files
committed
Merge pull request #1008 from yury/bridge-uitableviewcell-pointinside
[ASCellNode] Forward pointInside to node implementation from UITableViewCell.
2 parents 95e28d6 + 8396006 commit cc15d74

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

AsyncDisplayKit/ASTableView.mm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ - (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
7676
_node.highlighted = highlighted;
7777
}
7878

79+
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
80+
{
81+
return [_node pointInside:point withEvent:event];
82+
}
83+
7984
@end
8085

8186
#pragma mark -

0 commit comments

Comments
 (0)