aischool 倒计时VIEW封装
@implementation TWPaperTimeCountLabel
{
NSInteger miaoshu;
dispatch_source_t _timer;
}
-(id)initWithframe:(CGRect)frame endTime:(NSDate *)endtime delegate:(id<TWPaperTimelabelDelegate>)delegate
{
self = [super initWithFrame:frame];
if (self) {
self.delegate = delegate;
[self setcontentWith:endtime];
}
return self;
}
-(id)initWithframe:(CGRect)frame endTimeStr:(NSString *)endtimestr delegate:(id<TWPaperTimelabelDelegate>)delegate
{
self = [super initWithFrame:frame];
if (self) {
self.delegate = delegate;
if (endtimestr!=nil && [endtimestr isKindOfClass:[NSString class]]) {
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *destDate= [dateFormatter dateFromString:endtimestr];
[self setcontentWith:destDate];
}
}
return self;
}
-(void)reloadTime:(NSString *)endtimestr
{
if (endtimestr!=nil && [endtimestr isKindOfClass:[NSString class]]) {
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *destDate= [dateFormatter dateFromString:endtimestr];
[self setcontentWith:destDate];
}
}
-(void)setcontentWith:(NSDate *)data
{
NSDate *now = [NSDate new];
NSCalendar *cal = [NSCalendar currentCalendar];
unsigned int unitFlags = NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond;
NSDateComponents *d = [cal components:unitFlags fromDate:now toDate:data options:0];
NSInteger alltime = [d day]*3600*24+[d hour]*3600+[d minute]*60+[d second];
if(alltime>0)
{
[self GCDtimeresume:alltime];
}else
{
if (self.delegate!=nil && [self.delegate respondsToSelector:@selector(paperCountdownIsOver:)]) {
[self.delegate paperCountdownIsOver:self];
}
}
}
-(void)GCDtimeresume:(NSInteger)alltimeSecond
{
__block NSInteger timeout=alltimeSecond; //倒计时时间
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0,queue);
dispatch_source_set_timer(_timer,dispatch_walltime(NULL, 0),1.0*NSEC_PER_SEC, 0); //每秒执行
WEAKSELF;
dispatch_source_set_event_handler(_timer, ^{
if(weakSelf == nil)
{
dispatch_source_cancel(_timer);
}
if(timeout<=0){ //倒计时结束,关闭
dispatch_source_cancel(_timer);
dispatch_async(dispatch_get_main_queue(), ^{
if (weakSelf.delegate!=nil && [weakSelf.delegate respondsToSelector:@selector(paperCountdownIsOver:)]) {
[weakSelf.delegate paperCountdownIsOver:weakSelf];
}
});
}else{
[weakSelf setlabel:timeout];
timeout--;
}
});
dispatch_resume(_timer);
}
-(void)stopcount
{
if(_timer)
{
dispatch_source_cancel(_timer);
}
}
-(void)setlabel:(NSInteger)alltimeSecond
{
NSString *content =@"倒计时: ";
NSInteger seconds = alltimeSecond % 60;
NSInteger minutes = (alltimeSecond / 60) % 60;
NSInteger hours = alltimeSecond / 3600;
if (hours>0) {
content =[content stringByAppendingString:[NSString stringWithFormat:@"%ld小时",(long)hours]];
}
if (minutes>0) {
content =[content stringByAppendingString:[NSString stringWithFormat:@"%ld分",(long)minutes]];
}
if (seconds>0) {
content =[content stringByAppendingString:[NSString stringWithFormat:@"%ld秒",(long)seconds]];
}
dispatch_async(dispatch_get_main_queue(), ^{
self.text = content;
});
}
aischool 倒计时VIEW封装的更多相关文章
- ios 照片编辑的view封装
转:http://www.cnblogs.com/xiaobaizhu/archive/2013/07/03/3170101.html 该控件有旋转,缩放,拖动,剪裁的功能,封装成了一个ImageCr ...
- Vue 倒计时组件封装
项目中需要用到倒计时的功能,封装了一个组件. 代码解读: 1:created周期中获取传入参数时间的剩余秒数: this.initSecondsLeft() 并绑定间隔事件 intervalEvent ...
- iOS回顾笔记(03) -- 自定义View的封装和xib文件的使用详解
iOS回顾笔记(03) -- 自定义View的封装和xib文件的使用详解 iOS开发中,我们常常将一块View封装起来,以便于统一管理内部的子控件.如iOS回顾笔记(02)中的"书" ...
- iOS边练边学--view的封装
一.view封装的思路: *如果一个view内部的子控件比较多,一般会考虑自定义一个view,把它内部的子控件的创建屏蔽起来,不让外界关心 *外界可以传入对应的模型数据给view,view拿到模型数据 ...
- ios开发瀑布流框架的封装
一:瀑布流框架封装的实现思路:此瀑布流框架的封装仿照tableView的底层实现,1:每个cell的frame的设置都是找出每列的最大y值,比较每列的最大y值,将下一个cell放在最大y值最小的那一列 ...
- ListView加载性能优化---ViewHolder---分页
ListView是Android中一个重要的组件,可以使用它加列表数据,用户可以自己定义列表数据,同时ListView的数据加载要借助Adapter,一般情况下要在Adapter类中重写getCoun ...
- android标题栏下面弹出提示框(一) TextView实现,带动画效果
产品经理用的是ios手机,于是android就走上了模仿的道路.做这个东西也走了一些弯路,写一篇博客放在这里,以后自己也可用参考,也方便别人学习. 弯路: 1.刚开始本来用PopupWindow去实现 ...
- Authentication of Django
Django Authentication 用户认证系统 一. Django的认证系统 Django自带一个用户认证系统,用于处理用户账户.群组.许可和基于cookie的用户会话. 1.1 概览 Dj ...
- WebApp中的页面生命周期及路由管理
最近切换到一个新项目,使用的技术栈是Require+Backbone,鉴于对鞋厂webapp框架的了解,发现这个新项目有些缺陷,主要是单纯依赖Backbone造成的,也就是Backbone的好和坏都在 ...
随机推荐
- Java基础知识点2:hashCode()方法
hashCode()方法基本实现 hashCode方法是Java的Object类所定义的几个基本方法之一.我们可以深入到Object类的源码中去查看: public native int hashCo ...
- 【CentOS】虚拟机网络配置与远程登录
////////////////////////////////////11月16日更新////////////////////////////////////////////////////// 一 ...
- DELL灵越15R5521安装黑苹果
按照网上的流程安装即可:(懒人法) 首先分出两个硬盘分区,一个10G左右(用于做系统),一个30G左右(用于装系统)://注意生成时选择不要格式化 然后利用硬盘助手将镜像文件(.cdr文件)写入10G ...
- HDU5288 OO’s Sequence
Problem Description OO has got a array A of size n ,defined a function f(l,r) represent the number o ...
- Android -- FlipViewController的使用(jar文件)
1. 此控件的作用 类似于翻书一样,可以上下翻页的控件, 2. 效果图
- 初学Less
使用Less Server-side usage npm安装 命令行使用 在代码中使用 Client-side usage 语言特性 Variables Mixins Nested Rules Ope ...
- 20145205《Java程序设计》第四次实验:Android环境搭建
实验内容 1.搭建Android环境 2.运行Android 3.修改代码,能输出学号 实验步骤 搭建Android环境 安装Android,核心是配置JDK.SDK 运行Android 总结感想: ...
- 2016.9.20 java上课作业
此程序从命令行接收多个数字,求和之后输出
- poj2389-Bull Math(大整数乘法)
一,题意: 大整数乘法模板题二,思路: 1,模拟乘法(注意"逢十进一") 2,倒序输出(注意首位0不输出) 三,步骤: 如:555 x 35 = 19425 5 5 5 5 5 ...
- extjs后自己写了一些见不得人的脚本
<html> <head> <title> 配置管理器 </title> <style type="text/css"> ...