我收到了这个错误:
Expression result unused
在这一行:
for(NSInteger i = 0; i lives; i++)
这是我的代码:
lives = 3;
heartArray = [ [NSMutableArray alloc] init];
for(NSInteger i = 0; i lives; i++)
{
CCSprite *heart = [CCSprite spriteWithFile:@"heart.png"];
[hearthArray insertObject:heart atIndex:i];
heart.position = ccp( ((i+1)*50), winSize.height - 50);
[self addChild:hearth];
}
答案 0 :(得分:1)
你有一个错字。您的i < lives
循环中的第二个表达式中应该有for
。