SKAction repeatActionForever not spawning entity
问题 Basically I have a spawn entity function that should in theory, spawn a random balloon onto the screen with certain properties. I have designed the method as such: -(void)spawnBalloon { int a = arc4random_uniform(self.frame.size.width); int b = self.frame.size.height - 50; CGPoint loc = CGPointMake(a, b); [self spawnBalloonAtPoint:loc]; } And this method works. When I call it in the init function, it works. When I call it in the touchesMoved() function it works. However, when I try and call