-(void) update:(ccTime *)dt{
for( int i=0; i < [objects count]; i++){
CCSprite *obj = (CCSprite *) [objects objectAtIndex:i];
if(obj.position.y <= 40){
[obj stopAllActions];
[self removeChild:obj cleanup:YES]; /* ?? */
[objects removeObjectAtIndex:i];
}
}
}
Я ожидаю, что этот код удалит спрайты, но он не работает.спрайт все еще на экране.что я делаю не так, пожалуйста, помогите.спасибо.
РЕДАКТИРОВАТЬ:
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"vase.plist"];
CCSpriteBatchNode *spriteSheet = [CCSpriteBatchNode batchNodeWithFile:@"vase.png"];
[self addChild:spriteSheet z:1 tag:1];
//CCSpriteFrame must be created for each animation frame.
NSMutableArray *animFrames = [NSMutableArray array];
for (int i = 1; i <= 3; i++) {
NSString *file = [NSString stringWithFormat:@"frame %d.png", i];
CCSpriteFrame *frame = [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:file];
[animFrames addObject:frame];
}
//Sprite is positioned and then animated.
CCSprite *player = [CCSprite spriteWithSpriteFrameName:@"frame 1.png"];
CCAnimation *anim = [CCAnimation animationWithFrames:animFrames delay:0.20f];
CCRepeat *repeat = [CCRepeat actionWithAction:[CCAnimate actionWithAnimation:anim restoreOriginalFrame:YES] times:3];
[player runAction:repeat];
player.position = startPostion;
[spriteSheet addChild:player];