In cocos2d for iPhone, how can I create a multiline label (textbox) with a fixed width?
Currently, I am using:
CCLabelTTF *labelTextTop = [CCLabelTTF labelWithString: @"My long string that should be placed in two lines, instead of in one extremely long one."
fontName: @"Marker Felt"
fontSize: 40];
This is what I currently use :