简单的计时器-swift

前端之家收集整理的这篇文章主要介绍了简单的计时器-swift前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
import UIKit

class ViewController: UIViewController {
    
    var time = 0
    
    func result(){
        time++
        print(time)
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        
        var timer = NSTimer()
        timer = NSTimer.scheduledTimerWithTimeInterval(1,target: self,selector: ("result"),userInfo: nil,repeats: true)
        
    }

猜你在找的Swift相关文章