gpt4 book ai didi

ios - Swift 选择器 - 发送到实例的无法识别的选择器

转载 作者:搜寻专家 更新时间:2023-10-30 22:30:04 25 4
gpt4 key购买 nike

我有一个函数:

func runRockRotation(rockSprite: SKSpriteNode){
startRockRotationAnimation(rockSprite, isRock: true)
}

当我这样调用它时:

runRockRotation(rock)

它可以工作,但我似乎无法将它放入 NSTimer 选择器中。

var timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "runRockRotation:", userInfo: rock, repeats: false)

看了很多论坛,试过这个:

var timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "runRockRotation()", userInfo: rock, repeats: false)
var timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "runRockRotation(_)", userInfo: rock, repeats: false)
var timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "runRockRotation", userInfo: rock, repeats: false)

此外,尝试不使用 rock,使用 nil,但似乎没有任何效果。

每次我得到:

2015-04-10 15:49:03.830 Meh[1640:218030] -[__NSCFTimer runAction:completion:]: unrecognized selector sent to instance 0x174166840
2015-04-10 15:49:03.832 Meh[1640:218030] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFTimer runAction:completion:]: unrecognized selector sent to instance 0x174166840'

如何在带有参数的选择器中调用我的函数?我知道如何在 Objective C 中做到这一点,但似乎无法在 Swift 中做到这一点。我们将不胜感激。

最佳答案

查看 scheduledTimerWithTimeInterval 的文档

你会看到

The selector should have the following signature: timerFireMethod: (including a colon to indicate that the method takes an argument).

The timer passes itself as the argument, thus the method would adopt the following pattern: - (void)timerFireMethod:(NSTimer *)timer

您的函数与此模式不匹配,因此找不到合适的选择器。

使用类似 -

func runRockRotationForTimer(_ timer: NSTimer){
self.runRockRotation(timer.userInfo as? SKSpriteNode)
timer.invalidate();
}

并安排它使用

var timer = NSTimer.scheduledTimerWithTimeInterval(1.0, target: self, selector: "runRockRotationForTimer:", userInfo: rock, repeats: false)

关于ios - Swift 选择器 - 发送到实例的无法识别的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29562064/

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