为了获得NSLOG“MOO”,我如何调用此语句,我必须有3个intvalue为2?现在,当我绘制一个初始值为2时,它会给我NSLog moo,但我想要它在哪里我必须绘制它3次以获得NSLog“MOO”。有什么提示吗?
if ([[dictionary valueForKey:[cowssShuffled objectAtIndex:currentCow]] intValue] == 2)
{
NSLog(@"MOO");
}
答案 0 :(得分:1)
首次初始化
int count=0;
然后
if ([[dictionary valueForKey:[cowssShuffled objectAtIndex:currentCow]] intValue] == 2)
{
count++;
if(count==2)
{
NSLog(@"MOO");
}
}