大家好,我对swift有疑问。我需要调用多个函数,比如函数一,函数二和函数三;如何创建一个函数来同时调用这三个函数或方法?
答案 0 :(得分:0)
如果在同一时间'你的意思是运行异步,它非常简单。您只需要调用Grand Central Dispatch就可以在不同的线程上运行每个功能。
请查看Swift文档以获取有关GCD的更多帮助。
答案 1 :(得分:0)
将以下内容粘贴到游乐场中:
import Foundation
func method1() -> String {
return "method1"
}
func method2() -> String {
return "method2"
}
func method3() -> String {
return "method3"
}
func callThreeFunctions () {
println(method1())
println(method1())
println(method1())
}
callThreeFunctions()
这是一种方式。还有其他人。如果您正在考虑别的事情,请告诉我您在寻找什么。