标签: iphone
可能重复: What's the Best Way to Shuffle an NSMutableArray?
答案 0 :(得分:1)
示例代码:
int i = arc4random() % 4; NSString value = [arr objectAtIndex: i] [arr removeObjectAtIndex: i];
重复这些步骤,直到你有一个空数组。