NSTimer 可以采用多个选择器吗?
Posted
技术标签:
【中文标题】NSTimer 可以采用多个选择器吗?【英文标题】:Can an NSTimer take multiple selectors? 【发布时间】:2014-08-20 18:59:08 【问题描述】:我正在尝试在我的应用中使用 NSTimer
,并且想知道是否可以在计时器触发时调用两个方法。
代码如下:
gameTimer = NSTimer.scheduledTimerWithTimeInterval(0.01, target: self, selector:
Selector("gameMovement" && "fireBullet"), userInfo: nil, repeats: true)
我收到一条错误消息,提示选择器中有两个参数。
【问题讨论】:
不,但是您可以路由到调用其他两个的方法,或者您可以设置两个单独的计时器。 【参考方案1】:不。您只需要调用一种方法来代理您想要的所有事情。
func someFunc()
gameTimer = NSTimer.scheduledTimerWithTimeInterval(
0.01,
target: self,
selector: Selector("timerFired"),
userInfo: nil,
repeats: true
)
func timerFired()
gameMovement()
fireBullet()
无论如何,这是一种更易于维护的模式,因为它更容易看到您的代码是如何流动的。
【讨论】:
以上是关于NSTimer 可以采用多个选择器吗?的主要内容,如果未能解决你的问题,请参考以下文章