未使用的实体问题:表达式结果未使用XCode 4

时间:2011-03-10 02:17:34

标签: xcode entity xcode4

拥有以下代码并在for语句初始化中的xs处获得上述错误。是不是在Xcode 3中得到它,只是在我今天安装Xcode 4时出现了。 xs是

int xs = 0;
for (xs; xs<3; xs++) {
        if ([colorLayoutArray objectAtIndex:xs] == [colorLayoutArray objectAtIndex:xs+1]){
            rowCorrectCount = rowCorrectCount +1;}
}

任何线索?

1 个答案:

答案 0 :(得分:7)

for()第一个句子中的“xs”什么也没做。编译器抱怨你可能不是那个意思。你的意思是以下之一:

for (int xs = 0; xs<3; xs++) {
        if ([colorLayoutArray objectAtIndex:xs] == [colorLayoutArray objectAtIndex:xs+1]){
            rowCorrectCount = rowCorrectCount +1;} }

int xs = 0;
for (; xs<3; xs++) {
        if ([colorLayoutArray objectAtIndex:xs] == [colorLayoutArray objectAtIndex:xs+1]){
            rowCorrectCount = rowCorrectCount +1;} }