Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助在 Obj-C 中随机排列数字序列,例如 1-4,它将是 3、1、2、4 或 1、4、3、2。我知道它涉及到这个功能arc4random()。有什么建议/提示吗?
arc4random()
在这里你可以找到一个洗牌类别NSMutableArray:
NSMutableArray
洗牌 NSMutableArray 的最佳方法是什么?
您可以使用int iRandomNum = arc4random() % 4, 并在 for 循环中相应地使用输出
int iRandomNum = arc4random() % 4
标签