假设我在 helper.swift 中定义了一堆辅助函数,其中一个是func1
。
func1
,如何在func1
正文中获取调用func1
的VC的引用?
我知道将VC设置为func1
的参数或将func1
作为UIViewController
的扩展名,但我想要的答案就像我描述的那样。
答案 0 :(得分:0)
将VC1参考放在参数列表
中func1(controller: UIViewController) {
// use controller to do what you want
}