Add tap gesture to animated sticker

This commit is contained in:
Peter
2019-07-01 23:31:56 +03:00
parent c346512553
commit e83237e97f

View File

@@ -99,6 +99,7 @@ final class HorizontalStickerGridItemNode: GridItemNode {
animationNode = AnimatedStickerNode()
animationNode.transform = self.imageNode.transform
animationNode.visibility = self.isVisibleInGrid
animationNode.view.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(self.imageNodeTap(_:))))
self.addSubnode(animationNode)
self.animationNode = animationNode
}