我知道通常的方式&它适用于视图控制器,但不适用于场景
UIPanGestureRecognizer *longPanGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panRecognized:)];
[self.view addGestureRecognizer:longPanGesture];
然后我实现了选择器,但它永远不会被调用。然后我将相同的代码移动到我的场景的视图控制器中。选择器被调用。
我的问题是如何在精灵套件场景中添加手势识别器?