I use a cclabelttf label to display text inside standard sprite images. It works fine in retina and non-retina, but the last line of the text gets cut-off sometimes in the 64 bit iPad air.
This was the code I used,
[CCLabelTTF labelWithString:text fontName:_font fontSize:_fontSize dimensions:dimensions hAlignment:kCCTextAlignmentCenter vAlignment:kCCVerticalTextAlignmentCenter lineBreakMode:kCCLineBreakModeWordWrap];
But when I changed the text to vertically align top, it started working again.
[CCLabelTTF labelWithString:text fontName:_font fontSize:_fontSize dimensions:dimensions hAlignment:kCCTextAlignmentCenter vAlignment:kCCVerticalTextAlignmentTop lineBreakMode:kCCLineBreakModeWordWrap];
Any idea what's going on ? I'd really like to have the center vertical align for my text. Any solution to make that happen ?