i am having many plist, in my game-for each level. i am using this to unload the previous frameCache ,
for(int i=1;i<stage;i++)
[[CCSpriteFrameCache sharedSpriteFrameCache] removeSpriteFramesFromFile:[NSString stringWithFormat:@"candys%i.plist",i]];
but after a while it seems that the game becomes a little bit slower.
- i am also loading in real time, the images like this :
sprite = [CCSprite spriteWithSpriteFrameName:[NSString stringWithFormat:@"candy%i.png",1]];
where candy1 is a sprite in a spritesheet on the cache and is being loaded
in REAL time- which mean many times a second.
can it be bad ? is it loads the memory to get the sprite from the spriteSheet many times a second ? do i have to pre define it ?
many thanks .