gpt4 book ai didi

ios - 将函数传递给变量,以便稍后调用

转载 作者:搜寻专家 更新时间:2023-11-01 06:34:10 24 4
gpt4 key购买 nike

我目前正在为我正在开发的应用制作一个自定义 UIView 类,它要求您传递一个 void,该 void 将在 UIView 的点击事件时执行。我需要做的是获取传递给 init() 函数的函数,并将其存储起来以便稍后调用。我目前正在处理的代码如下所示:

class CustomUIView: UIView {

private var _tapListener : Void;

init (tapListener: () -> Void){
//Attempt to set _tapListener variable as tap listener does not work :(
_tapListener = tapListener();
//Right now it just executes the function :(
let listener = UITapGestureRecognizer(target: self, action: #selector(callFunction));
self.addGestureRecognizer(listener)
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

func callFunction() {
//Call the function here
_tapListener();
}
}

如何才能完成我在这里尝试做的事情?

非常感谢任何帮助

最佳答案

只需以与init 的参数相同的方式定义您的实例变量:

private var _tapListener: () -> Void

关于ios - 将函数传递给变量,以便稍后调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43507881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com