IOS - 创建和创建使用间隔特定定时器
我是一名 IOS 开发新手,但我在 Android 开发方面有丰富的经验。我的问题是关于间隔特定计时器的创建和使用。
在 android 中,我可以轻松地制作一个这样的计时器:
timedTimer = new Timer();
timedTimer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
TimedMethod();
}
}, 0, 1000);
其中间隔为 1000 MS,并且在每个时钟周期调用 TimedMethod() 方法。我该如何在 IOS 中实现类似的功能?
非常感谢您的阅读!任何帮助都会很棒! :-)
I am a newbie IOS developer, but I have a good amount of experience in Android development. My question is regarding the creating and use of interval specific timers.
In android I could easily make a timer like this:
timedTimer = new Timer();
timedTimer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
TimedMethod();
}
}, 0, 1000);
Where the interval is 1000 MS and the method TimedMethod() is called on every tick. How would I go about implementing a similar function in IOS?
Thanks so much for reading! Any help at all would be great! :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用重复的 <代码>NSTimer像这样:
You can use a repeating
NSTimer
like so:使用
在调用上述方法的同一个类中,创建一个名为
timerCallback
的方法。每次计时器触发时都会调用此函数;每 1000 毫秒。Use
In the same class as you called the above method, create a method called
timerCallback
. This will be called every time your timer fires; every 1000 milliseconds.使用 Foundation Framework 的 NSTimer.h 文件中存在的以下方法
语法:
用法:
Use below method present in NSTimer.h file of Foundation Framework
Syntax :
Usage :
对于 Swift:
使用下面的行创建一个计时器对象,该对象将每 10 秒调用一次 upload 方法。如果您得到不实现methodSignatureForSelector,请使用 NSObject 扩展您的类。阅读此内容以获取更多信息 Y 类的对象 X没有在 Swift 中实现 methodSignatureForSelector
For Swift:
Create a timer object using below line which will call upload method every 10 second. If you get does not implement methodSignatureForSelector extend your class with NSObject. Read this for more information Object X of class Y does not implement methodSignatureForSelector in Swift