Force Shuffle NSMutableArray

前端 未结 6 958
深忆病人
深忆病人 2021-01-13 14:03

I have a NSMutableArray called putNumberUsed. It contains the following objects @\"blah1,@\"blah2\",@\"blah3\",@\"blah4\". I want to shuffle these objects randomly so for ex

6条回答
  •  清酒与你
    2021-01-13 14:37

    generate a random number for index

    int randomInt = arc4random() % [putNumberUsed count];
    [putNumberUsed objectAtIndex:randomInt];
    

提交回复
热议问题