CCLabelTTF 还有CCEditbox 当字符是奇数的时候显示出来,偶数时显示不出来- -有木有哪个大哥有解决方案啊

我也遇到lz 的问题,有些字能显示,有些不能显示
有朋友知道吗?最近上架要求要支持ios7了,急死了
: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 32 bits/pixel; 3-component color space; kCGImageAlphaPremultipliedLast; 195 bytes/row.
请问这个问题解决了没?
在CCimage里面更改一下就OK了。
// draw text
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef context = CGBitmapContextCreate(data, (int)dim.width, (int)dim.height, 8, (int)dim.width * 4, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGColorSpaceRelease(colorSpace);
加上那几个红色部分就可以了。
请问这个在哪里改