最近项目中有用到相关的内容、才意识到好久没有用这块的东西、感觉有点生疏了、看了网上各种的内容,觉得不是格式不好看就是内容不详尽、所以今天特意把涉及到的内容都整理了一下。
通俗的说一下、其实我们所说的时间戳就是时间差值、具体的有当前时间距离原始时间也就是1970年的时间差、某个指定时间距离原始时间的时间差以及某个两个指定时间之间的时间差、最后一个的特例就是给定的某个时间距离当前时间SinceNow的时间差。
下面具体的来看看怎么用代码实现时间和时间戳两者的相互转换以及涉及到的其他知识点。
因为图片看起来可能效果要更好一些、所以先把代码图片贴上来:
- 获取系统当前时间并自定义格式进行显示
NSDate *curDate = [NSDate date];
NSLog(@"当前时间NSDate类型 %@",curDate);
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *curTime = [formatter stringFromDate:curDate];
NSLog(@"当前时间自定义格式1 %@",curTime);
[formatter setDateFormat:@"yyyy年MM月dd日 HH时mm分ss秒"];
curTime = [formatter stringFromDate:curDate];
NSLog(@"当前时间自定义格式2 %@",curTime);
NSLog(@"--------------------------------------------");
2.根据指定的时间字符串转换为NSDate类型的时间(有八个小时的时间差)
NSString *timeString = @"08/14/13:03:29";
NSDateFormatter *formatter1 = [[NSDateFormatter alloc] init];
[formatter1 setDateFormat:@"MM/dd/HH:mm:ss"];
NSDate *timeDate = [formatter1 dateFromString:timeString];
NSLog(@"字符串转换为NSDate类型 %@",timeDate);
NSLog(@"--------------------------------------------");
3.时间转换为时间戳
3.1当前时间距离1970年的时间差
NSDate *date = [NSDate date];
NSInteger timeInterval = [[NSNumber numberWithDouble:[date timeIntervalSince1970]] integerValue];
NSLog(@"当前时间距离1970年的时间差为 %ld",timeInterval);
NSLog(@"--------------------------------------------");
3.2指定时间距离当前时间的时间差
NSString *timeString = @"2015/08/14/13:03:29";
NSDateFormatter *formatter1 = [[NSDateFormatter alloc] init];
[formatter1 setDateFormat:@"yyyy/MM/dd/HH:mm:ss"];
NSDate *timeDate = [formatter1 dateFromString:timeString];
NSInteger timeInterval2 = [[NSNumber numberWithDouble:[timeDate timeIntervalSinceDate:date]] integerValue];
NSLog(@"指定时间距离当前时间的时间差方式1为 %ld",timeInterval2);
// 写成[date timeIntervalSinceDate:timeDate] 则值为正数
NSInteger timeInterval3 = [[NSNumber numberWithDouble:[timeDate timeIntervalSinceNow]] integerValue];
NSLog(@"指定时间距离当前时间的时间差方式2为 %ld",timeInterval3);
NSLog(@"--------------------------------------------");
3.3两个指定时间之间的时间差
NSString *ts1 = @"2013/04/09/13:03:29";
NSDateFormatter *fm1 = [[NSDateFormatter alloc] init];
[fm1 setDateFormat:@"yyyy/MM/dd/HH:mm:ss"];
NSDate *td1 = [fm1 dateFromString:ts1];
NSString *ts2 = @"2017-08-20 05:25:48";
NSDateFormatter *fm2 = [[NSDateFormatter alloc] init];
[fm2 setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *td2 = [fm2 dateFromString:ts2];
NSInteger timeInterval4 = [[NSNumber numberWithDouble:[td2 timeIntervalSinceDate:td1]] integerValue];
NSLog(@"两个指定时间ts1 和 ts2 之间的时间差为 %ld",timeInterval4);
4.时间戳转换为时间
NSString *intervalString = @"1503217364";
NSDate *date = [NSDate dateWithTimeIntervalSince1970:[intervalString doubleValue]+3600*8];// 加上八小时的时间差值
NSLog(@"时间戳转换为时间是 %@",date);
5.比较两个日期是不是在同一天
NSString *intervalString = @"3603217364";
NSDate *date1 = [NSDate dateWithTimeIntervalSince1970:[intervalString doubleValue]];
NSDate *date2 = [NSDate date];
NSLog(@"date1是 %@, date2是 %@",date1,date2);
NSDateFormatter *fm = [[NSDateFormatter alloc] init];
[fm setDateFormat:@"yyyyMMdd"];
NSString *string1 = [fm stringFromDate:date1];
NSString *string2 = [fm stringFromDate:date2];
if ([string1 isEqualToString:string2]) {
NSLog(@"是在同一天");
}else {
NSLog(@"不是同一天");
}
以上就是关于时间和时间戳转换的系列内容了、至于可能具体的项目中会用到的诸如倒计时等的效果、都是可以根据以上所讲的内容去进行细化实现的。
我是姣爷、希望我的文章能对大家有所帮助。
网友评论