When a vanilla Sprite Kit project is started, it shows node count and FPS using these calls
SKView * skView = (SKView *)self.view;
skView.showsFPS = YES;
skView.showsNodeCount = YES;
However, I cannot seem to disable these for KKView, I tried:
self.kkView.showsFPS = NO;
self.kkView.showsNodeCount = NO;
self.kkView.showsDrawCount = NO;
and I still get blue debug text in the lower right corner.
How can I disable debug text for KKView ?