Questions tagged «nstimer»

23
Swift中的@selector()?
我正在尝试创建一个NSTimerin,Swift但是遇到了一些麻烦。 NSTimer(timeInterval: 1, target: self, selector: test(), userInfo: nil, repeats: true) test() 是同一个类中的函数。 我在编辑器中收到一个错误: 找不到接受提供的参数的'init'的重载 当我更改selector: test()为selector: nil错误时消失。 我试过了: selector: test() selector: test selector: Selector(test()) 但是没有任何效果,我在参考文献中找不到解决方案。
659 swift  selector  nstimer 

6
如何使用NSTimer?
已锁定。该问题及其答案被锁定,因为该问题是题外话,但具有历史意义。它目前不接受新的答案或互动。 如何使用NSTimer?谁能给我逐步说明?


8
如何每隔X秒运行一次方法
我正在开发一个Android 2.3.3应用程序,我需要每X秒运行一个方法。 在iOS中,我有NSTimer,但是在Android中,我不知道该使用什么。 有人推荐我汉德勒;另一个向我推荐AlarmManager,但我不知道哪种方法更适合NSTimer。 这是我要在Android中实现的代码: timer2 = [ NSTimer scheduledTimerWithTimeInterval:(1.0f/20.0f) target:self selector:@selector(loopTask) userInfo:nil repeats:YES ]; timer1 = [ NSTimer scheduledTimerWithTimeInterval:(1.0f/4.0f) target:self selector:@selector(isFree) userInfo:nil repeats:YES ]; 我需要像NSTimer这样的东西。 你推荐我什么?
114 android  timer  nstimer 




By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.