服务器之家

服务器之家 > 正文

Swift3.0 GCD定时器的使用DEMO

时间:2021-01-03 16:54     来源/作者:Stevin三天三夜的专栏

 直接看主要代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//截止日期
let endDate = datePicker.date
//开始日期
let startDate = Date()
//时间间隔
let timeInterval:TimeInterval = endDate.timeIntervalSince(startDate)
if timer == nil {
 //剩余时间
 var timeout = timeInterval
 if timeout != 0 {
 //创建全局队列
 let queue = DispatchQueue.global()
 //在全局队列下创建一个时间源
 timer = DispatchSource.makeTimerSource(flags: [], queue: queue)
 //设定循环的间隔是一秒,并且立即开始
 timer?.scheduleRepeating(wallDeadline: DispatchWallTime.now(), interval: .seconds(1))
 //时间源出发事件
 timer?.setEventHandler(handler: {
  //必须是当前日期往后的日期,在datePicker上也做了限制
  if timeout <= 0 {
  self.timer?.cancel()
  self.timer = nil
  DispatchQueue.main.async(execute: {
   self.day.text = "00"
   self.hour.text = "00"
   self.minute.text = "00"
   self.second.text = "00"
  })
  } else {
  //计算剩余时间
  let days = Int(timeout) / (3600 * 24)
  if days == 0 {
   self.day.text = ""
  }
  let hours = (Int(timeout) - Int(days) * 24 * 3600) / 3600
  let minutes = (Int(timeout) - Int(days) * 24 * 3600 - Int(hours) * 3600) / 60
  let seconds = Int(timeout) - Int(days) * 24 * 3600 - Int(hours) * 3600 - Int(minutes) * 60
  //主队列中刷新UI
  DispatchQueue.main.async(execute: {
   if days == 0 {
   self.day.text = "0"
   } else {
   self.day.text = "\(days)"
   }
   if hours < 10 {
   self.hour.text = "0" + "\(hours)"
   } else {
   self.hour.text = "\(hours)"
   }
   if minutes < 10 {
   self.minute.text = "0" + "\(minutes)"
   } else {
   self.minute.text = "\(minutes)"
   }
   if seconds < 10 {
   self.second.text = "0" + "\(seconds)"
   } else {
   self.second.text = "\(seconds)"
   }
  })
  timeout -= 1
  }
 })
 //启动时间源
 timer?.resume()
 }
}

DEMO效果图

Swift3.0 GCD定时器的使用DEMO

原文链接:http://blog.csdn.net/feng2qing/article/details/56304809

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
返回顶部