-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDFTimeCountDownManager.h
More file actions
83 lines (66 loc) · 1.37 KB
/
DFTimeCountDownManager.h
File metadata and controls
83 lines (66 loc) · 1.37 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
// DFTimeCountDownManager.h
// DevilFinger Team Project
//
// Created by DevilFinger on 17/6/1.
// Copyright © 2017年 DevilFinger Team. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol DFTimeCountDownManagerDelegate <NSObject>
@optional
-(void)countDidDoWithValue:(CGFloat)timeValue;
-(void)countDidCancelWithValue:(CGFloat)timeValue;
-(void)countDidStopWithValue:(CGFloat)timeValue;
@end
@interface DFTimeCountDownManager : NSObject
/*
是否倒计时
*/
@property (nonatomic, assign) BOOL isCountDown;
/*
是否循环倒计时
*/
@property (nonatomic, assign) BOOL isCycle;
/*
是否正在倒计时
*/
@property (nonatomic, assign) BOOL isCouning;
/*
每次执行的时间间隔
*/
@property (nonatomic, assign) NSTimeInterval perCountDownTime;
/*
倒计时最小时间
*/
@property (nonatomic, assign) CGFloat minCountDownTime;
/*
倒计时最大时间
*/
@property (nonatomic, assign) CGFloat maxCountDownTime;
/*
当前倒计时时间
*/
@property (nonatomic, assign) CGFloat currentTime;
/*
倒计时代理
*/
@property (nonatomic, weak) id<DFTimeCountDownManagerDelegate> countDownDelegate;
/*
单列
*/
+ (instancetype)sharedManager;
/*
倒计时开始方法
*/
-(void)doAction;
/*倒计时停止方法*/
-(void)cancelAction;
/*
倒计时重置方法
*/
-(void)redoAction;
/*
立即刷新
*/
-(void)refreshImmediatel;
@end