如何在另一个文件中定义的函数中获取VC的引用

时间:2016-10-17 09:11:43

标签: ios swift

假设我在 helper.swift 中定义了一堆辅助函数,其中一个是func1

将在VC1和VC2中调用

func1,如何在func1正文中获取调用func1的VC的引用?

我知道将VC设置为func1的参数或将func1作为UIViewController的扩展名,但我想要的答案就像我描述的那样。

1 个答案:

答案 0 :(得分:0)

将VC1参考放在参数列表

func1(controller: UIViewController) {
    // use controller to do what you want
}