IOS关于大型网站抢购、距活动结束,剩余时间倒计时的实现代码
程序员文章站
2023-12-12 13:28:59
2016年七夕抢购七夕底价直降,满268再减50!满468减100!大牌49元起!相约七夕情人节!欧美日韩名妆香水,2折秒杀爆款!绝对正品! 真心表爱意!限时抢购等活动拥有...
2016年七夕抢购七夕底价直降,满268再减50!满468减100!大牌49元起!相约七夕情人节!欧美日韩名妆香水,2折秒杀爆款!绝对正品! 真心表爱意!限时抢购等活动拥有尽有。那么问题来了,基于代码是如何实现此功能的呢?不要着急,下面效果给大家带来了关于大型网站抢购、距活动结束,剩余时间倒计时的核心代码,一起看看吧。
关键代码如下所示:
/** * 倒计时 * * @param endtime 截止的时间戳 * * @return 返回的剩余时间 */ - (nsstring*)remainingtimemethodaction:(long long)endtime { //得到当前时间 nsdate *nowdata = [nsdate date]; nsdate *enddata=[nsdate datewithtimeintervalsince1970:endtime]; nscalendar* chineseclendar = [ [ nscalendar alloc ] initwithcalendaridentifier:nsgregoriancalendar ]; nsuinteger unitflags = nshourcalendarunit | nsminutecalendarunit | nssecondcalendarunit | nsdaycalendarunit | nsmonthcalendarunit | nsyearcalendarunit; nsdatecomponents *cps = [chineseclendar components:unitflags fromdate:nowdata todate: enddata options:0]; nsinteger hour = [cps hour]; nsinteger min = [cps minute]; nsinteger sec = [cps second]; nsinteger day = [cps day]; nsinteger mon = [cps month]; nsinteger year = [cps year]; nslog( @" from now to %@, diff: years: %d months: %d, days; %d, hours: %d, mins:%d, sec:%d", [nowdata description], year, mon, day, hour, min,sec ); nsstring *countdown = [nsstring stringwithformat:@"还剩: %zi天 %zi小时 %zi分钟 %zi秒 ", day,hour, min, sec]; if (sec<0) { countdown=[nsstring stringwithformat:@"活动结束/开始抢购"]; } return countdown; }
以上代码是ios关于大型网站抢购、距活动结束,剩余时间倒计时的实现代码,代码比较简单,大家根据需求适当的添加修改删除代码,如果参考过程中发现有任何疑问欢迎给我留言,小编会及时回复大家的!