Swift 定時器的使用--(本人親測)

來源:互聯網
上載者:User


在項目裡面需要使用到定時器

這裡我百度了一下 

用法和OC差不多

測試成功,也沒多少變化 下面上代碼。


    // 定時器

    private var timer:Timer!


     // 啟用計時器,控制每N秒執行一次getNetData方法

        timer = Timer.scheduledTimer(timeInterval: 5,

                                                       target:self,selector:#selector(OrderDetailsViewCtl.getNetData),

                                                       userInfo:nil,repeats:true)

    override func viewWillDisappear(_ animated: Bool) {

        super.viewWillDisappear(animated)

        // 退出的時候清空定時器

        timer.invalidate()


    }

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.