I am currently using Cocos2d FrameWork for my game. I need to change the background color in CCLabelTTF.I know how to set the font color, can someone tell me how to change the background color of the CCLabelTTF object.
CCLabelTTF *nameLabel=[CCLabelTTF labelWithString:[NSString stringWithFormat:@"%@",[plyName objectAtIndex:i]] fontName:@"Arial" fontSize:20];
nameLabel.position=ccp(100,y1);
nameLabel.color=ccc3(245, 222, 179);
[self addChild:nameLabel];
This is my sample code for adding a label. Any ideas?
source
share