拥有以下代码并在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;}
}
任何线索?
答案 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;} }