I am trying to setup a series of labels to display stats after every level. Every label I try to put on the screen is center-justified.
I looked through the Class Reference and Found the "labelWithString:dimensions:alignment:fontName:fontSize:" member function. I have been trying to load it as follows,
'
labelSize = CGSizeMake(200,24);
Label *theScore = [Label labelWithString:@"000000" dimensions:labelSize aligmnent:UITextAlignmentRight fontName:@"Marker Felt" fontSize:20];
'
but I get a warning each time "label may not respond to '+labelWithString:dimensions:alignment:fontName:fontSize:"