Swift - Update/Refresh Label that Displays Time

2019-02-11 06:37发布

I have a label which displays the current time in 12-hour format.

But, it does not update/refresh the time every time the minute/hour changes.

I need it to automatically change the label to the current time when the time changes.

标签: ios swift swift3
2条回答
Viruses.
2楼-- · 2019-02-11 07:15

Replace following code with your ViewController code then Connect iboutlet to showTimeLbl

class ViewController: UIViewController {

@IBOutlet weak var showTimeLbl: UILabel!
var timeCount:Int = 0
var timer:Timer!

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    if(timer != nil)
    {
        timer.invalidate()
    }
    timer = Timer(timeInterval: 1.0, target: self, selector: #selector(ViewController.timerDidFire), userInfo: nil, repeats: true)
    RunLoop.current.add(timer, forMode: RunLoopMode.commonModes)

}

func timerDidFire()
{
    timeCount += 1

    showTimeLbl.text = NSString(format: "%02d:%02d:%02d", timeCount/3600,(timeCount/60)%60,timeCount%60) as String

}
override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(true)
    timer?.invalidate()
    timer = nil
}

}

查看更多
做个烂人
3楼-- · 2019-02-11 07:26

Swift 3 Solution

class ViewController {

@IBOutlet weak var timeLabel: UILabel!
var timer: Timer?

let formatter: DateFormatter = {
       let tmpFormatter = DateFormatter()
       tmpFormatter.dateFormat = "hh:mm a"
       return tmpFormatter
     }()

override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view, typically from a nib.


  timer = Timer.scheduledTimer(timeInterval: 60, target: self, selector: #selector(self.getTimeOfDate), userInfo: nil, repeats: true)
}

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    timer?.invalidate()
  }

func getTimeOfDate() {
   var curDate = Date()

   timeLabel.text = formatter.string(from: curDate)

}
查看更多
登录 后发表回答