gpt4 book ai didi

swift - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序。无法识别的选择器发送到实例

转载 作者:行者123 更新时间:2023-11-30 11:08:56 28 4
gpt4 key购买 nike

我有 timerRunner() 函数,在单击按钮时运行:

func timerRunner() {
timer = Timer.scheduledTimer(timeInterval: 1.0, target: target.self, selector: (#selector(self.timeUpdater)), userInfo: nil, repeats: true)
}

Timer.scheduledTimer的选择器选择如下:

@objc func timeUpdater() {
counter = counter + 1

timerLabel.text = secondConverter(seconds: counter)

}

但这是我收到的错误消息:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[_SwiftValue timeUpdater]: unrecognized selector sent to instance '

最佳答案

据我所知,timeUpdater函数应该有一个Timer类型的参数。类似这样的事情:

@objc func timeUpdater(_ timer: Timer) {
counter = counter + 1
timerLabel.text = secondConverter(seconds: counter)
}

关于swift - 由于未捕获的异常 'NSInvalidArgumentException' 而终止应用程序。无法识别的选择器发送到实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52394500/

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