-1

我已经解决了包含终止方法的问题。

If(indexes==0){
endUp = YES;
}

感谢您为我指出正确的方向。这不是洗牌的问题。阿莱西格

4

2 回答 2

2

错误可能在您用来洗牌第一个数组的循环中。你不发布你的代码的那部分......是这样的吗?

for (int i=0; i<[indexes count]; i++){
// (...)
        [indexes removeObjectAtIndex:index]; 
// (...)
}

这可能会更好:

int arrayCount = [indexes count];
for (int i=0; i<arrayCount; i++){
// (...)
        [indexes removeObjectAtIndex:index]; 
// (...)
}

这个完整的代码运行良好,没有错误或崩溃:

int length = 10; 
NSMutableArray* indexes = [[NSMutableArray alloc] initWithCapacity:length];

for (int i=0; i<10; i++) [indexes addObject:[NSNumber numberWithInt:i]];
NSMutableArray*shuffle = [[NSMutableArray alloc] initWithCapacity:length];


int arrayCount = [indexes count];
for (int i=0; i<arrayCount; i++){

    int index = arc4random()%[indexes count];
    NSLog(@"___index: %i", index);
    NSLog(@"indexes: %@ ", indexes);

    [shuffle addObject:[indexes objectAtIndex:index]];
    [indexes removeObjectAtIndex:index]; 
    NSLog(@"shuffle: %@ ", shuffle);
}


for (int i=0; i<[shuffle count]; i++){
    int questionNumber = [[shuffle objectAtIndex:i] intValue] + 1; 
    NSLog(@"questionNumber: %i ", questionNumber);

}
于 2012-05-08T21:14:09.930 回答
-1

我明白了,无论如何,明白了!我实现了一个'if'语句,它将终止它! if ([indexes count] == 0)
{endProcess = YES}

于 2012-05-09T12:42:18.620 回答