作者:菜123 | 来源:互联网 | 2023-09-25 17:46
根据文件结束的时间转时间戳算出开始的时间。NSDate*dates_gatherRecord.gatherTime;得到时间NSTimeIntervalti[datestime
//根据文件结束的时间转时间戳算出开始的时间。
NSDate *dates = _gatherRecord.gatherTime; //得到时间
NSTimeInterval ti = [dates timeIntervalSince1970]; //转时间戳
NSTimeInterval ends = ti - [_gatherRecord.gatherDuration intValue];
NSDate *cOnformTime= [NSDate dateWithTimeIntervalSince1970:ends];
//根据当地时间把时间戳转为当地时间
NSTimeZone *zOne= [NSTimeZone systemTimeZone];
NSInteger interval = [zone secondsFromGMTForDate:conformTime];
NSDate *localeDate = [conformTime dateByAddingTimeInterval: interval];