您的位置:首页 > 移动开发 > IOS开发

iOS开发之-- 抢购、距活动结束,剩余时间倒计时

2016-11-08 10:58 429 查看
因为没有时间去着重研究过这个东西,只是知道大体上的逻辑,就是两个时间才行比对,具体的实现也是参考别人的写的方法,

只是做个记录,有时间会好好看看这个东西,具体代码如下:

/**
*  倒计时
*
*  @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;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: