gpt4 book ai didi

ios - 有没有办法在 iOS 应用程序上随机/重新排列按钮?

转载 作者:行者123 更新时间:2023-12-01 17:05:56 25 4
gpt4 key购买 nike

我正在开发一个 iOS 应用程序。我在 Storyboard上有 35 个按钮。无论如何我可以使用随机生成器来随机重新排列或随机播放按钮并仍然保持按钮的功能?

最佳答案

您可以将所有按钮对象添加到名为 buttonsArray 的 NSMutableArray 中,然后使用以下循环来交换按钮:

for (int i = 0; i < buttonsArray.count; i++) {
int random1 = arc4random() % [buttonsArray count];
int random2 = arc4random() % [buttonsArray count];
[buttonsArray exchangeObjectAtIndex:random1 withObjectAtIndex:random2];
}

关于ios - 有没有办法在 iOS 应用程序上随机/重新排列按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34448557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com