Merge pull request #1008 from yury/bridge-uitableviewcell-pointinside

[ASCellNode] Forward pointInside to node implementation from UITableViewCell.
This commit is contained in:
appleguy
2015-12-29 23:25:48 -08:00

View File

@@ -76,6 +76,11 @@ static NSString * const kCellReuseIdentifier = @"_ASTableViewCell";
_node.highlighted = highlighted;
}
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
return [_node pointInside:point withEvent:event];
}
@end
#pragma mark -