在Swift中是否存在Java的TimerTask副本?

时间:2015-01-05 23:54:40

标签: java android ios swift timertask

我在Android应用程序中使用TimerTask。现在我想在Swift中使用类似的概念。

Swift(iOS)中是否存在此功能的对应部分?

以下是一些示例Java代码:

Timer timer = new Timer();
timer.schedule(new TimerTask()
{
    @Override
    public void run()
    {
        if (lastItem.contains("mynp")) {

            // Do Stuff

            // Stop the thread
            this.cancel();
        }
    }
}, 0, 10);

1 个答案:

答案 0 :(得分:0)

查看NSTimer如果有帮助,我可以发布一个Objective-c示例,但我还不熟悉Swift。