iOS 时间与时间戳相互转化以及基本应用

一、时间戳与标准时间之间的相互转化
1.获取标准时间

//获取系统时间
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
//获取系统时区 **此时不设置时区是默认为系统时区
formatter.timeZone = [NSTimeZone systemTimeZone];
//指定时间显示样式: HH表示24小时制 hh表示12小时制
[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//只显示时间
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
//只显示日期
[dateFormatter setTimeStyle:NSDateFormatterShortStyle];
NSString *date = [formatter stringFromDate:[NSDate date]];
NSLog(@"nowTime:%@",date);

2.获取时间戳

NSDate *second = [NSDate date];
long secondTimeZone = [second timeIntervalSince1970];

3.标准时间转化时间戳

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
//指定时间显示样式: HH表示24小时制 hh表示12小时制
[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
NSString *lastTime = @"2017-01-23 17:22:00";
NSDate *lastDate = [formatter dateFromString:lastTime];
//以 1970/01/01 GMT为基准,得到lastDate的时间戳
long firstStamp = [lastDate timeIntervalSince1970];
NSLog(@"firstStamp:%ld",firstStamp);
扩展
//以 lastTime GMT为基准,得到的时间戳
long secondStamp = [[NSDate date] timeIntervalSinceDate:lastDate];
//以 此时 GMT为基准,得到lastDate的时间戳
long thirdStamp = [lastDate timeIntervalSinceNow];
//以 2001/01/01 GMT为基准,得到的时间戳
long fourthStamp = [[NSDate date] timeIntervalSinceReferenceDate];

4.时间戳转化成标准时间

//时间戳转化成时间
NSDateFormatter *stampFormatter = [[NSDateFormatter alloc] init];
[stampFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//以 1970/01/01 GMT为基准,然后过了secs秒的时间
NSDate *stampDate2 = [NSDate dateWithTimeIntervalSince1970:1485159493];
NSLog(@"时间戳转化时间 >>> %@",[stampFormatter stringFromDate:stampDate]);
扩展
//以 2001/01/01 GMT为基准,然后过了secs秒的时间
NSDate *stampDate = [NSDate dateWithTimeIntervalSinceReferenceDate:506852179];
//以 现在的时间 GMT为基准,然后过了secs秒的时间
NSDate *stampDate3 = [NSDate dateWithTimeIntervalSinceNow:7*24*3600];
NSLog(@"时间戳转化时间2 >>> %@",[stampFormatter stringFromDate:stampDate2]);
NSLog(@"时间戳转化时间3 >>> %@",[stampFormatter stringFromDate:stampDate3]);

二、分别根据时间戳与标准时间计算: 几分钟之前,几小时之前...

调用该方法,传入后台返回的时间戳
- (NSString *)timeBeforeInfoWithString:(NSTimeInterval)timeIntrval{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//获取此时时间戳长度
NSTimeInterval nowTimeinterval = [[NSDate date] timeIntervalSince1970];
int timeInt = nowTimeinterval - timeIntrval; //时间差
int year = timeInt / (3600 * 24 * 30 *12);
int month = timeInt / (3600 * 24 * 30);
int day = timeInt / (3600 * 24);
int hour = timeInt / 3600;
int minute = timeInt / 60;
int second = timeInt;
if (year > 0) {
return [NSString stringWithFormat:@"%d年以前",year];
}else if(month > 0){
return [NSString stringWithFormat:@"%d个月以前",month];
}else if(day > 0){
return [NSString stringWithFormat:@"%d天以前",day];
}else if(hour > 0){
return [NSString stringWithFormat:@"%d小时以前",hour];
}else if(minute > 0){
return [NSString stringWithFormat:@"%d分钟以前",minute];
}else{
return [NSString stringWithFormat:@"刚刚"];
}
}

三、有效期

例:有效期为7天
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//获取七日后的时间戳
NSDate *stampTimeZone = [NSDate dateWithTimeIntervalSinceNow:7*24*3600];
NSLog(@"stampTimeZone: %@",[formatter stringFromDate:stampTimeZone]);
例:有效期为本周日
NSDateComponents:可以简单且有效的获取某个时间点对应的“年”,“月”,“日”,“周”,“时”,“分”,“秒”等信息;还可以表示时间段,例如:一周,一个月,10年,5天,10分钟,10秒等等。
- (void)getMondayAndSunday{
NSDate *nowDate = [NSDate date];
//先创建一个 遵循某个历法 日历对象
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier: NSCalendarIdentifierISO8601];
NSDateComponents *compomemts = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitWeekday | NSCalendarUnitDay   fromDate:nowDate];
// 获取今天是周几 (iOS规定的)星期天是1 星期一是2
NSInteger weekday = compomemts.weekday;
// 获取今天是几号
NSInteger day = compomemts.day;
NSLog(@"weekday:%ld \t day:%ld",weekday,day);
// 计算当前日期分别于 周一和周天 的相差天数
long mondayValue,sundayValue;
if (weekday == 1) {
mondayValue = -6;
sundayValue = 0;
}else {
mondayValue = [calendar firstWeekday] - weekday + 1;
sundayValue = 8 - weekday;
}
NSLog(@"mondayValue: %ld \t sundayValue: %ld",mondayValue,sundayValue);
// 在当前日期(去掉时分秒)基础上加上差的天数
NSDateComponents *mondayComp = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay  fromDate:nowDate];
[mondayComp setDay:day + mondayValue];
NSDate *mondayOfWeek = [calendar dateFromComponents:mondayComp];
NSDateComponents *sundayComp = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay   fromDate:nowDate];
[sundayComp setDay:day + sundayValue];
NSDate *sundayOfWeek = [calendar dateFromComponents:sundayComp];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"YYYY-MM-dd"];
NSString *monday = [formatter stringFromDate:mondayOfWeek];
NSString *sunday = [formatter stringFromDate:sundayOfWeek];
NSLog(@"monday:%@ \t sunday:%@",monday, sunday);
}

四、计算星座
调用此方法,传入参数格式为: YYYY-MM-DD

/**
摩羯座 12月22日------1月19日
水瓶座 1月20日-------2月18日
双鱼座 2月19日-------3月20日
白羊座 3月21日-------4月19日
金牛座 4月20日-------5月20日
双子座 5月21日-------6月21日
巨蟹座 6月22日-------7月22日
狮子座 7月23日-------8月22日
处女座 8月23日-------9月22日
天秤座 9月23日------10月23日
天蝎座 10月24日-----11月21日
射手座 11月22日-----12月21日
*/
-(NSString *) getConstellationInfo:(NSString *)date {
//计算月份
NSString *retStr=@"";
NSString *birthStr = [date substringFromIndex:5];
int month=0;
NSString *theMonth = [birthStr substringToIndex:2];
if([[theMonth substringToIndex:0] isEqualToString:@"0"]){
month = [[theMonth substringFromIndex:1] intValue];
}else{
month = [theMonth intValue];
}
//计算天数
int day=0;
NSString *theDay = [birthStr substringFromIndex:3];
if([[theDay substringToIndex:0] isEqualToString:@"0"]){
day = [[theDay substringFromIndex:1] intValue];
}else {
day = [theDay intValue];
}
if (month<1 || month>12 || day<1 || day>31){
return @"错误日期格式!";
}
if(month==2 && day>29) {
return @"错误日期格式!!";
}else if(month==4 || month==6 || month==9 || month==11) {
if (day>30) {
return @"错误日期格式!!!";
}
}
NSString *astroString = @"魔羯水瓶双鱼白羊金牛双子巨蟹狮子处女天秤天蝎射手魔羯";
NSString *astroFormat = @"102123444543";
retStr=[NSString stringWithFormat:@"%@",[astroString substringWithRange:NSMakeRange(month*2-(day < [[astroFormat substringWithRange:NSMakeRange((month-1), 1)] intValue] - (-19))*2,2)]];
return [NSString stringWithFormat:@"%@座",retStr];
}

五、根据生日计算年龄

根据出生日期计算年龄会经常用到,我开始想用时间戳的方法来解决,简单快速,但是这样并不正确,因为没有考虑到闰年的情况。所以这样实现是不严谨的。

NSDateFormatter*df = [[NSDateFormatter alloc] init];//格式化
[df setDateFormat:@"yyyy/MM/dd"];
NSDate *date = [df dateFromString:@"2001/01/01"];
NSTimeInterval dateDiff = [date timeIntervalSinceNow];
long age = fabs(dateDiff/(60*60*24))/365;
NSLog(@"年龄是:%ld", age);

下面上正确的代码:

NSDateFormatter*df = [[NSDateFormatter alloc] init];//格式化
[df setDateFormat:@"yyyy/MM/dd"];
NSString *dateStr = @"2001/01/01";
NSTimeInterval dateDiff = [[df dateFromString:dateStr] timeIntervalSinceNow];
long age = fabs(dateDiff/(60*60*24))/365;
NSLog(@"年龄是:%@",[NSString stringWithFormat:@"%ld岁",age]);
NSString *year = [dateStr substringWithRange:NSMakeRange(0, 4)];
NSString *month = [dateStr substringWithRange:NSMakeRange(5, 2)];
NSString *day = [dateStr substringWithRange:NSMakeRange(dateStr.length-2, 2)];
NSLog(@"出生于%@年%@月%@日", year, month, day);
NSDate *nowDate = [NSDate date];
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierISO8601];
NSDateComponents *compomemts = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitWeekday | NSCalendarUnitDay fromDate:nowDate];
NSInteger nowYear = compomemts.year;
NSInteger nowMonth = compomemts.month;
NSInteger nowDay = compomemts.day;
NSLog(@"今天是%ld年%ld月%ld日", nowYear, nowMonth, nowDay);

// 计算年龄
NSInteger userAge = nowYear - year.intValue - 1;
if ((nowMonth > month.intValue) || (nowMonth == month.intValue && nowDay >= day.intValue)) {
userAge++;
}
NSLog(@"用户年龄是%ld",userAge);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容