Hello, i'm using cocos2d to make an ipad app and i'm just starting out.
So i added a label to my HelloWorld scene and when i tested it out it was really slow. Like i was getting 30 - 40 fps out of 60. i figured out that label's size that was causing the drop in fps. it is a fontsize 128when this happens and i'm just wondering if cclabels are supposed to be this slow or i am doing something wrong. here is my code:
CGSize screenSize = [[CCDirector sharedDirector] winSize];
_label = [CCLabel labelWithString:@"Hello World!" fontName:@"Marker Felt" fontSize:128];
_label.position = ccp(screenSize.width, screenSize.height);
_label.color = ccc3(0, 0, 0);
[self addChild: _label];
any feedback is appreciated