PHP 时间戳 转时间 for ios 8*3600
Posted BigBaHuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 时间戳 转时间 for ios 8*3600相关的知识,希望对你有一定的参考价值。
// 时间戳 转时间
int intTimeString = [_model.date intValue];
NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:intTimeString];
NSLog(@"confromTimesp %@", confromTimesp);
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
NSTimeZone * timeZone = [NSTimeZone timeZoneForSecondsFromGMT:8*3600];
[formatter setTimeZone:timeZone];
[formatter setDateStyle:NSDateFormatterMediumStyle];
[formatter setTimeStyle:NSDateFormatterShortStyle];
[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
NSString * formatedTime = [formatter stringFromDate:confromTimesp];
NSLog(@"formatedTime is %@",formatedTime);
_SendTimeLabel.text = formatedTime;
以上是关于PHP 时间戳 转时间 for ios 8*3600的主要内容,如果未能解决你的问题,请参考以下文章