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

方法一

【开发笔记】两种不一样的方式求时间差(NSTimeInteral)_第1张图片

文本复制:

//第一种:

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];

方法二


【开发笔记】两种不一样的方式求时间差(NSTimeInteral)_第2张图片

文本复制:

//第二种:

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;

你可能感兴趣的:(【开发笔记】两种不一样的方式求时间差(NSTimeInteral))