您可以使用枚举将各种功能放入Array中,然后使用开关提取功能。
原文链接:https://www.f2er.com/swift/320346.htmlenum MyFuncs { case Arity0 ( Void -> Void ) case Arity2 ( (Int,String) -> Void) } func someFunc(n:Int,S:String) { } func boringFunc() {} var funcs = Array<MyFuncs>() funcs.append(MyFuncs.Arity0(boringFunc)) funcs.append( MyFuncs.Arity2(someFunc)) for f in funcs { switch f { case let .Arity0(f): f() // call the function with no arguments case let .Arity2(f): f(2,"fred") // call the function with two args } }