-(void) callMethod:(ccTime)dt {
int x = arc4random() % 126;
Paddle *p = [myFinalArray objectAtIndex:x];
p.position = CGPointMake(40,0);
myTag=p.tag;
//[self removeChild:p cleanup:YES];
[self addChild:p];
[self moveMethod1: p];
[p release];
}
I am adding All Paddle objects to myFinalArray and then accessing them by random numbers, if I do call the removeChild, then it will remove it, but if I do call removeChild anywhere else, of removeAllChild, then it is not working, what should I do ?
I am setting background of cocos2d game in init as following
// set "background.jpg" as the background
CCSprite *bg = [CCSprite spriteWithFile:@"home.png"];
[bg setPosition:ccp(160, 240)];
bg.tag = 1000; // just any arbitrary number
[self addChild:bg];
but when I do go back to mainScreen(First screen before selecting game), then it won't remove this images, even I did
[[CCDirector sharedDirector] end];
and I removed the background in dealloc as
[self removeChildByTag:1000 cleanup:YES];
now what is mistake I am doing, can any one help If have any query about question, then may be ask me in comments,