I used the code as follow to implement the effect of replace scenes:
[[CCDirector sharedDirector] replaceScene:[CCTransitionPageTurn transitionWithDuration:0.5f scene:alterScene backwards:NO]];
Now, the back of turned page is transparent. The effect I want to do is make it to white color .How can I get this?
If I want a white background on my CCTransitionPageTurn I would probably just create a CCLayerColor instance behind everything in my scene. This would ensure when the page is turned the color would be white.