http://cl.ly/3s1B2G3M0i0C2k0G2o3D
What am I doing wrong?
I think it is a result of this code. I am making three buttons like this.
playButton = [SPButton buttonWithUpState:[SPTexture textureWithContentsOfFile:@"menuchiligreen.png"] text:@"Play"]; playButton.fontName = @"Blazed"; playButton.fontSize = 35; playButton.fontColor = 0xD9A031; playButton.textBounds = [SPRectangle rectangleWithX:playButton.textBounds.x y:playButton.textBounds.y+5 width:playButton.textBounds.width height:playButton.textBounds.height]; playButton.x = 320/2-playButton.width/2; playButton.y = 100; [playButton addEventListener:@selector(playButtonTriggered:) atObject:self forType:SP_EVENT_TYPE_TRIGGERED]; [menu addChild:playButton];