在我的程序中,我创建了一个 NSMutable 数组,其中包含一系列在屏幕上移动的精灵(向左)
但是,虽然在我的代码中实现,但在测试时它们似乎没有出现在屏幕模拟器上。
有任何想法吗?
-(void) addBlocks
{
NSMutableArray *_blocks; blocktest=[CCSprite spriteWithFile:@"blocksquare.png"];
blocktest.tag = 1;
// add the block to the array of blocks
[_blocks addObject:blocktest];
blocktest.position=ccp(500,100);
id repeat2 =[CCRepeatForever actionWithAction:[CCSequence actions:
[CCMoveTo actionWithDuration:7 position:ccp(-180,100)],nil]];
[blocktest runAction:repeat2];
}