对于循环 - 表达式结果未使用

时间:2014-03-04 06:16:35

标签: objective-c

我收到了这个错误:

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];
}

1 个答案:

答案 0 :(得分:1)

你有一个错字。您的i < lives循环中的第二个表达式中应该有for