gpt4 book ai didi

ios - swift 2 TapGestureRecognizer 不接受自己作为目标

转载 作者:行者123 更新时间:2023-11-28 11:12:57 25 4
gpt4 key购买 nike

我正在做一个项目然后我需要添加一个 tapGesture ,问题是我无法将自己添加为目标,我不断收到此错误:

Cannot convert value of type 'NSObject -> () -> ViewController' to expected argument type 'AnyObject?'

这是我的代码:

我也试过了:

let tap = UITapGestureRecognizer(target: self, action: "dismissKeyboard")

但是我得到了同样的错误

最佳答案

将该行放在您的 viewDidLoad 而不是类级别:

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let tap = UITapGestureRecognizer(target: self, action: "dismissKeyboard")
}

根据我在您编辑问题时看到的情况,您的 tap 变量超出范围。

关于ios - swift 2 TapGestureRecognizer 不接受自己作为目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33831526/

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