I have created a number of CCSprites using spriteWithFile.
How do I change the image for the sprite during runtime?
I need to change a few sprites images qui
You just need to change the texture of your CCSprite at runtime like this.
[aSprite setTexture:[[CCTextureCache sharedTextureCache] addImage:@"NewImage.png"]];