我试图使“暂停”和“播放”按钮起作用,但是我不确定其背后的逻辑。我之前尝试过将let dict = ["1" : ["one","une"],
"2" : ["two","duex"]]
let searchIndex = dict.firstIndex(where: { $0.value.contains(where: {$0.hasPrefix("on")})})
if let index = searchIndex {
print("Return: \(dict[index].key)") // prints "1"
} else {
print("Could not find")
}
放在暂停按钮上,但我真的不知道它是如何工作的。这是我的Codepen的帮助
clearInterval