Hi,
if I try this (single line label):
captionLbl = [Label labelWithString:@"click" fontName:@"Arial" fontSize:18.0f];
the setColor function works....
but if I try to create a multiline label like this:
captionLbl =[Label labelWithString:NSLocalizedString(@"klick here\nPlease", @"") dimensions:CGSizeMake(230, 200) alignment:UITextAlignmentLeft fontName:@"Helvetica" fontSize:18];
the textcolor is can not be set (the color is always white)
:-(
i tried this
[captionLbl setRGB:0 :0 :0];
and this
[captionLbl setColor:ccc3(255, 0, 0)];