Questions tagged [skview]

SKView is the UIView subclass Sprite Kit uses to render the currently presented scene's nodes onto. All nodes displayed by Sprite Kit are children (so to speak) of a SKView.

136 questions
-1
votes
1 answer

SKView gestureRecognizer [UITapRecognizer name]: unrecognized selector sent to instance

-(void)didMoveToView:(SKView *)view { UITapGestureRecognizer* doubleTapGestureRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(doubleTap:)]; doubleTapGestureRecognizer.numberOfTapsRequired = 2; [self.view…
t0a0
  • 668
  • 1
  • 9
  • 18
1 2 3
9
10