gpt4 book ai didi

swift - 发送到类的静态函数无法识别的选择器

转载 作者:搜寻专家 更新时间:2023-11-01 07:01:40 25 4
gpt4 key购买 nike

我有一个简单的 ViewController,它带有一个每 3 秒触发一次的计时器,当我使用以下代码时,它会按预期工作。

class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
var myTimer = MyTimer()
myTimer.triggerTimer()
}
}

class MyTimer: NSObject {
var timer: Timer?

func triggerTimer() {
DispatchQueue.main.async {
if self.timer == nil {
self.timer = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(self.timeout), userInfo: nil, repeats: true)
}
}
}

@objc func timeout() {
print("timeout")
}
}

但是当我将timertriggerTimer() 更改为static 时,错误发生了。这是调用错误的代码:

class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
MyTimer.triggerTimer()
}
}

class MyTimer: NSObject {
static var timer: Timer?

static func triggerTimer() {
DispatchQueue.main.async {
if self.timer == nil {
self.timer = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(self.timeout), userInfo: nil, repeats: true)
}
}
}

@objc func timeout() {
print("timeout")
}
}

错误是:

unrecognized selector sent to class 0x10906b338'
*** First throw call stack:
(
0 CoreFoundation 0x000000010a2dc1e6 __exceptionPreprocess + 294
1 libobjc.A.dylib 0x0000000109971031 objc_exception_throw + 48
2 CoreFoundation 0x000000010a35d6c4 +[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 CoreFoundation 0x000000010a25e898 ___forwarding___ + 1432
4 CoreFoundation 0x000000010a25e278 _CF_forwarding_prep_0 + 120
5 Foundation 0x00000001093db4dd __NSFireTimer + 83
6 CoreFoundation 0x000000010a26be64 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
7 CoreFoundation 0x000000010a26ba52 __CFRunLoopDoTimer + 1026
8 CoreFoundation 0x000000010a26b60a __CFRunLoopDoTimers + 266
9 CoreFoundation 0x000000010a262e4c __CFRunLoopRun + 2252
10 CoreFoundation 0x000000010a26230b CFRunLoopRunSpecific + 635
11 GraphicsServices 0x000000010fe57a73 GSEventRunModal + 62
12 UIKit 0x000000010a7590b7 UIApplicationMain + 159
13 StaticProject 0x0000000109067b27 main + 55
14 libdyld.dylib 0x000000010e747955 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

我在网站上搜索并看到了一些类似的问题,但我找不到讨论这个问题的答案。谁能给我一些提示?谢谢。

最佳答案

既然 timer: Timer?triggerTimer() 是静态的,你需要将 timeout 方法也设为静态,使以下代码更改....

@objc static func timeout() {
print("timeout")
}

关于swift - 发送到类的静态函数无法识别的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50858962/

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