倒计时

作者: 加州旅馆1116 | 来源:发表于2020-05-07 15:45 被阅读0次

Requirements

实现按钮倒计时: 基于GCD的倒计时

github链接:https://github.com/ZPP506/ZPPCountdown

使用NSTimer实现倒计时缺点:

  1. NSTimer加在main runloop中,模式是NSDefaultRunLoopMode,main负责所有主线程事件,例如UI界面的操作,复杂的运算,这样在同一个runloop中timer就会产生阻塞
  2. 模式的改变。主线程的 RunLoop 里有两个预置的 Mode:kCFRunLoopDefaultMode 和 UITrackingRunLoopMode

GCD定时器不受RunLoop约束,比NSTimer更加准时

效果图

381492d8-cccc-4b62-bfda-c06c6ffedbe8.gif

使用方法

注意

  1. Button:创建时候的类型不同闪烁效果不一样

UIButtonTypeCustom->普通
UIButtonTypeSystem ->闪烁

开始倒计时

1:
[button startTimer:60]

2:
[button  startTimer:60 endComplete:nil];     
      

取消倒计时

[button cancelTime]

Installation

ZPPCountdown is available through CocoaPods. To install
it, simply add the following line to your Podfile:

pod 'ZPPCountdown'

Author

张朋朋, 944160330@qq.com

License

ZPPCountdown is available under the MIT license. See the LICENSE file for more info.

相关文章

  • 倒计时

    新年倒计时…中考倒计时…高考倒计时…告别学生倒计时…假期倒计时…睡觉倒计时…起床倒计时… 生活中,很多与我们息息相...

  • 倒计时不仅使我们焦躁,还可以使我们振奋啊

    中考倒计时,高考倒计时, 倒计时100天 倒计时50天 倒计时10天 倒计时5天 ........ 这个场景想必在...

  • 倒计时

    文/木子 开学倒计时了 爸妈回去倒计时了 教师节倒计时了 国庆节倒计时了 小儿12岁倒计时了 寒假倒计时了 元旦倒...

  • wordlist 13

    倒计时倒计时

  • wordlist 11

    倒计时倒计时

  • van-count-down 倒计时相关问题

    1. 倒计时重置问题 背景:业务需要在开启倒计时、暂停、恢复倒计时实时判断是否展示倒计时,并重置倒计时 问题:直接...

  • iOS开发-倒计时

    倒计时 倒计时60s 倒计时HH-MM-SS 1.倒计时60s 很多时候在点击按钮发送短信的时候需要倒计时读秒 2...

  • 10.27

    倒计时第一天,倒计时7,好想赶快到倒计时1。

  • 1小时倒计时

    倒计时 目前我们内部用的比较多的倒计时:一个小时的倒计时、12个小时的倒计时。 examinePassTime:审...

  • js中date倒计时

    获取倒计时之前,我们不妨先来看怎样获取当前时间吧!!! 获取倒计时 1、实现倒计时功能2、倒计时结束按钮可被点击,...

网友评论

      本文标题:倒计时

      本文链接:https://www.haomeiwen.com/subject/veraghtx.html