When I setup a SpriteKit action like so:
action = [SKAction sequence:@[[SKAction performSelector:@selector(update) onTarget:self],[SKAction waitForDuration: 1.0f/60.0f]]];
Will my selector be called at 60fps even if the game is only running at 30fps? Or will it max out at whatever the game's frame rate currently is?