CCLabelTTF在CCSequence后消失

时间:2012-04-24 05:22:16

标签: ios cocos2d-iphone label sequence

我需要你的建议。在我的GameScene中,我有一个点标签 curentPointsLabel 。要更新我有一个功能,但在性能 updateCurentPoints (CCSequence)后,点标签消失了!为什么呢?

_curentPointsLabel = [CCLabelTTF labelWithString:@"" dimensions:CGSizeMake(screenSize.width*0.17f, screenSize.height*0.1f) alignment:UITextAlignmentLeft fontName:@"Trebuchet MS" fontSize:15];
_curentPointsLabel.anchorPoint = CGPointMake(1, 1);
_curentPointsLabel.position =  ccp( screenSize.width-screenSize.height/20, screenSize.height-2*screenSize.height/20);
_curentPointsLabel.color = ccc3(0,0,0);
[self addChild:_curentPointsLabel];

当我想要更新点标签时

- (void)updateCurentPoints:(int)points {

    if(_curentPoints+points<0)
        _curentPoints=0;
    else
        _curentPoints=_curentPoints+points;

   // [_curentPointsLabel setString:[NSString stringWithFormat:@"Score: %d",_curentPoints]];

    NSString * valueString=[[[NSString alloc] initWithString:[NSString stringWithFormat:@"Score: %d",_curentPoints]] retain];

    id sequence=[CCSequence actions:
                [CCCallFuncND actionWithTarget: self selector: @selector(setLabelColor:withIndex:) data:(void*)1],
                [CCCallFuncND actionWithTarget: self selector: @selector(setLabelValue:withValue:) data:(NSString*)valueString],
                [CCBlink actionWithDuration:0.5f blinks:2], 
                [CCCallFuncND actionWithTarget: self selector: @selector(setLabelColor:withIndex:) data:(void*)3],

                 nil];

    [_curentPointsLabel runAction:sequence];

    [valueString release];
}

//*******************************************************************
-(void) setLabelValue:(id) sender withValue:(NSString*) value
{   
    CCLabelTTF *label=(CCLabelTTF *)sender;
    NSString * valueString=[[[NSString alloc] initWithString:[NSString stringWithFormat:@"%@",value]] retain];
    [label setString:[NSString stringWithFormat:@"%@",valueString]];
    [valueString release];
}
//*******************************************************************
-(void) setLabelColor:(id) sender withIndex:(int)index
{   
    CCLabelTTF *label=(CCLabelTTF *)sender;

    if(index==0)
        label.color = ccc3(255,255,255);//white
    else if(index==1)
        label.color = ccc3(0,255,0);//green
    else if(index==2)
        label.color = ccc3(255,0,0);//red
    else if(index==3)
        label.color = ccc3(0,0,0);//black
    NSLog(@"color:%i",index);
}

1 个答案:

答案 0 :(得分:1)

添加[CCShow动作]以确保精灵可见。试试这个:

id sequence=[CCSequence actions:
             [CCCallFuncND actionWithTarget: self selector: @selector(setLabelColor:withIndex:) data:(void*)1],
             [CCCallFuncND actionWithTarget: self selector: @selector(setLabelValue:withValue:) data:(NSString*)valueString],
             [CCBlink actionWithDuration:0.5f blinks:2], 
             [CCShow action],
             [CCCallFuncND actionWithTarget: self selector: @selector(setLabelColor:withIndex:) data:(void*)3],
             nil];

同时测试将闪烁次数从2更改为3(或除1之外的其他奇数)。这两种解决方案都应该有效。