gpt4 book ai didi

ios - swift 3 : How to use for loop for looping arrays

转载 作者:行者123 更新时间:2023-11-28 18:08:50 26 4
gpt4 key购买 nike

场景

假设我有一个 array = ["a", "b", "c", "d"]

我有一个按钮功能,它允许我打印这个数组中的数据。我使用 for 循环遍历数组。

但是在第四次点击打印最后一个数组元素(index[3])之后,我希望它从头开始打印(index[0]) 在第五次点击时。

非常感谢任何帮助!

谢谢

最佳答案

为此,您需要简单地维护数组对象的当前元素的索引。

var currentIndex = 0

@IBAction func buttonClick(_ sender: UIButton) {
print(array[currentIndex])
currentIndex += 1
if currentIndex == array.count {
currentIndex = 0
}
}

关于ios - swift 3 : How to use for loop for looping arrays,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41975206/

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