NSString テキストを含む CCLabelTTF があります。5 番目の IOS sizeWithFont: は、7 番目の sizeWithAttributes: よりも大きな高さを返します。
if ([[[UIDevice currentDevice] systemVersion] compare:@"7.0" options:NSNumericSearch] == NSOrderedAscending)
{
dim = [string sizeWithFont:font];
}
else
{
dim = [string sizeWithAttributes:[NSDictionary dictionaryWithObject:[UIFont fontWithName:name size:(CGFloat)size] forKey:NSFontAttributeName]];
}
dim differs on 1 pixel for 5 and 7 ios