【开发笔记】两种不一样的方式求时间差(NSTimeInteral)

方法一

文本复制:

//第一种:

NSDateFormatter*dateFormatter = [[NSDateFormatteralloc]init];

//设置UTC时间格式

//2016-05-21T06:40:05Z

[dateFormattersetDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];

//转换贷款日期为NSDate

NSDate*postedDate = [dateFormatterdateFromString:@"此处是你的时间"];

//获取当前时间对应的NSData

NSDate*currentDate = [NSDatedate];

//转换截至日期为NSDate

NSDate*plannedDate = [dateFormatterdateFromString:@"此处是你的时间"];

//结算两个date的时间差(单位:秒)

NSTimeIntervaltimeInterval = [plannedDatetimeIntervalSinceDate:currentDate];

方法二


文本复制:

//第二种:

NSDateFormatter*f = [NSDateFormatternew];

//设置格式Mon Aug 15 15:36:17 +0800 2016

f.dateFormat=@"EEE MMM dd HH:mm:ss Z yyyy";

//设置时区

f.locale= [[NSLocalealloc]initWithLocaleIdentifier:@"en_US"];

//得到微博发送的Date对象

NSDate*weiboDate = [fdateFromString:@"此处是你的时间"];

NSDate*nowDate = [NSDatenew];

//微博时间

longcreateTime = [weiboDatetimeIntervalSince1970];

//当前时间

longnowTime = [nowDatetimeIntervalSince1970];

longtime = nowTime - createTime;

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容