我有一个当前在我的代码中运行的函数。该函数运行一个循环,该循环对其中包含信息的数组进行索引。一旦找到某个值,我想停止运行该功能。有没有简单的方法可以做到这一点?
下面是我当前拥有的代码:
func myFunction() {
for i in 0...10 {
if cell.value == myArray[i]{
cell.identifier.isHidden = false
// this is where I want to stop the function
}
else {
cell.identifier.isHidden = true
}
}
}
答案 0 :(得分:1)
您可以通过调用return
退出该功能。