關(guān)于倒計時的小demo學(xué)習(xí)

`這次的項(xiàng)目里面有涉及到商品的倒計時功能岂座,UIcollectionview中羅列商品進(jìn)行倒計時,以前頂多就是密碼找回,獲取驗(yàn)證碼配紫,或者輪播圖簡單的使用了一下NSTimer。之前還因?yàn)閠imer使用不恰當(dāng)造成了內(nèi)存持續(xù)飆高午阵,直接crash的情況躺孝。。。銷毀timer需要使用invalidate植袍,直接設(shè)置nil并不能銷毀惧眠。

這次使用GCD定時器進(jìn)行功能簡單實(shí)現(xiàn),其中也是找了一些資料于个,看了其他大神的代碼氛魁,然后自己寫了一個demo,僅作為筆記方便以后自己查看览濒,完善呆盖。
demo地址:https://github.com/w467364316/GoodTimerDemo.git

demo圖.png

放代碼:
工具類.h

@interface CutDown : NSObject

-(void)creatTimerWit:(void(^)())completeBlock;

-(void)destroyTimer;
@end

創(chuàng)建定時器,設(shè)定間隔時間為0.1秒


@interface CutDown ()

@property(nonatomic,strong) dispatch_source_t timer;

@end

@implementation CutDown
-(void)creatTimerWit:(void(^)())completeBlock{

    if (_timer == nil) {
        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), 0.1*NSEC_PER_SEC, 0);
        dispatch_source_set_event_handler(_timer, ^{
           dispatch_async(dispatch_get_main_queue(), ^{
               completeBlock();
           });
        });
        dispatch_resume(_timer);
    }
}

-(void)destroyTimer{
    if (_timer) {
        dispatch_source_cancel(_timer);
        _timer = nil;
    }
    
}
@end

viewController內(nèi)部贷笛,在viewDidLoad方法中調(diào)用cutDown 創(chuàng)建定時器

- (void)viewDidLoad {
    
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    
    self.myCollection.backgroundColor = [UIColor whiteColor];
    self.dataArray = [NSMutableArray array];
    [self.myCollection registerNib:[UINib nibWithNibName:@"TimerCollectionViewCell" bundle:nil] forCellWithReuseIdentifier:@"timeCell"];
    
    NSString *path = [[NSBundle mainBundle] pathForResource:@"GoodsTimes" ofType:@".plist"];
    NSArray *array = [NSArray arrayWithContentsOfFile:path];
    
    for (NSDictionary *dic in array) {
        GoodTimeModel *model = [GoodTimeModel initWithDic:dic];
        [self.dataArray addObject:model];
    }
    //開始進(jìn)行計時
    self.cutDown = [[CutDown alloc] init];
    __weak typeof(self) weakSelf = self;
    [self.cutDown creatTimerWit:^{
        [weakSelf updateVisialCells];
    }];
}
plist.png

GoodTimeModel參數(shù)

@interface GoodTimeModel : NSObject
@property(nonatomic,copy) NSString *number;//序號
@property(nonatomic,copy) NSString *beginTime;//開始時間
@property(nonatomic,copy) NSString *time;//時間
@property(nonatomic,copy) NSString *minSecond;//毫秒

+(instancetype)initWithDic:(NSDictionary*)dic;
-(instancetype)initWithDic:(NSDictionary*)dic;

@end

更新當(dāng)前視圖內(nèi)的cell的顯示信息

/**
 *  更新cell
 */
-(void)updateVisialCells{
    
    NSArray *cells = self.myCollection.visibleCells;
    for (TimerCollectionViewCell *cell in cells) {
        GoodTimeModel *model = self.dataArray[cell.tag];
        int minSec = [model.minSecond intValue];
        if (minSec <=0) {
            minSec = 9;
        }else{
            minSec --;
        }
        model.minSecond = [NSString stringWithFormat:@"%d",minSec];
        cell.model = model;
    }
}

設(shè)置cell部分

-(UICollectionViewCell*)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    
    TimerCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"timeCell" forIndexPath:indexPath];
    GoodTimeModel *model = self.dataArray[indexPath.row];
    cell.model = model;
    cell.tag = indexPath.row;
    return cell;
}

TimerCollectionViewCell中進(jìn)行計算顯示剩余時間

-(void)setModel:(GoodTimeModel *)model{
    
    _model = model;
    self.numerLabel.text = model.number;
    self.minSecondLabel.text = model.minSecond;
    [self setTimeWithLastTime:model.time beginTime:model.beginTime];
}

/**
 *  開始進(jìn)行倒計時
 *
 *  @param time 結(jié)束時間
 */
-(void)setTimeWithLastTime:(NSString*)time beginTime:(NSString*)beginTime{

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    
    NSDate *endDate = [formatter dateFromString:time];
    NSDate *nowDate = [NSDate date];
    
    NSDate *beginDate = [formatter dateFromString:beginTime];
    NSTimeInterval beginTimeInterval = [beginDate timeIntervalSinceDate:nowDate];
    
    //剩余時間
    NSTimeInterval timeInterval = [endDate timeIntervalSinceDate:nowDate];
    self.minSecondLabel.hidden = YES;
    if (timeInterval <=0) {
        //活動結(jié)束
        self.timerLabel.text = @"活動結(jié)束";
    }else if (beginTimeInterval > 0){
         //活動未開始
          self.timerLabel.text = @"活動未開始";
    }else{
        self.minSecondLabel.hidden = NO;
        int day = (int)timeInterval/(3600*24);
        int hours = (int)(timeInterval - day*3600*24)/3600;
        int minus = (timeInterval - day*24*3600 - hours*3600)/60;
        int second = (timeInterval - day*3600*24 - hours*3600- minus*60);
        
        //小時
        NSString *finalHours = [NSString stringWithFormat:@"%d",day*24 + hours];
        if ([finalHours intValue] <10) {
            finalHours = [NSString stringWithFormat:@"0%@",finalHours];
        }
        //分鐘
        NSString *finalMinutes = [NSString stringWithFormat:@"%d",minus];
        if ([finalMinutes intValue] <10) {
            finalMinutes = [NSString stringWithFormat:@"0%@",finalMinutes];
        }
        //秒
        NSString *finalSeconds = [NSString stringWithFormat:@"%d",second];
        if ([finalSeconds intValue] < 10) {
            finalSeconds = [NSString stringWithFormat:@"0%@",finalSeconds];
        }
        self.timerLabel.text = [NSString stringWithFormat:@"%@:%@:%@",finalHours,finalMinutes,finalSeconds];
    }
}
-(void)dealloc{
    
    NSLog(@"class = %s",object_getClassName(self));
    [_cutDown destroyTimer];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末应又,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子乏苦,更是在濱河造成了極大的恐慌株扛,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件汇荐,死亡現(xiàn)場離奇詭異洞就,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)掀淘,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門旬蟋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人革娄,你說我怎么就攤上這事倾贰。” “怎么了拦惋?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵匆浙,是天一觀的道長。 經(jīng)常有香客問我厕妖,道長首尼,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任言秸,我火速辦了婚禮软能,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘举畸。我一直安慰自己埋嵌,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布俱恶。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪合是。 梳的紋絲不亂的頭發(fā)上了罪,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機(jī)與錄音聪全,去河邊找鬼泊藕。 笑死,一個胖子當(dāng)著我的面吹牛难礼,可吹牛的內(nèi)容都是我干的娃圆。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼蛾茉,長吁一口氣:“原來是場噩夢啊……” “哼讼呢!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起谦炬,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤悦屏,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后键思,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體础爬,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年吼鳞,在試婚紗的時候發(fā)現(xiàn)自己被綠了看蚜。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡赔桌,死狀恐怖供炎,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情纬乍,我是刑警寧澤碱茁,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站仿贬,受9級特大地震影響纽竣,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜茧泪,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一蜓氨、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧队伟,春花似錦穴吹、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽啥容。三九已至,卻和暖如春顷霹,著一層夾襖步出監(jiān)牢的瞬間咪惠,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工淋淀, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留遥昧,地道東北人。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓朵纷,卻偏偏與公主長得像炭臭,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子袍辞,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,727評論 25 707
  • 李杜光芒在 詩意天水情 首屆“中國天水·李杜詩歌獎”在天水頒獎 主持人在主持首屆“中國天水·李杜詩歌獎”頒獎晚會...
    讀寫人家閱讀 520評論 0 1
  • 過去革屠,中國卻大多數(shù)人都是使用批評教育法凿试,然后據(jù)研究,這種做法給人帶來的影響就是培訓(xùn)了一代又一代不夠自信的人似芝。于是乎...
    CL生涯規(guī)劃師閱讀 562評論 0 0
  • 引言 以前車馬很遠(yuǎn)党瓮,書信很慢详炬,一生只夠認(rèn)真愛一個人∧椋可現(xiàn)在的我們呛谜,處于一個匆匆忙忙的信息時代,卻再也提不起勇氣去愛...
    陳大白閱讀 1,162評論 5 8