美文网首页
7.30关于时间戳转成时间格式

7.30关于时间戳转成时间格式

作者: 小码农杰哥 | 来源:发表于2017-07-30 19:01 被阅读0次

    NSString *strT = [NSString stringWithFormat:@"%@",dic[@"birthDate"]];

    NSTimeInterval time = [strT integerValue]/1000;

    //把毫秒转换成NSDate格式

    NSDate *nd = [NSDate dateWithTimeIntervalSince1970:time];

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];

    [dateFormat setDateFormat:@"yyyy-MM-dd"];

    NSString *string = [dateFormat stringFromDate:nd];

    self.dateStr = [NSString stringWithFormat:@"%@",string];

    //当前时间转换成字符串

    NSDate* data= [NSDate dateWithTimeIntervalSinceNow:0];

    NSTimeInterval interval=[data timeIntervalSince1970]*1000;

    NSString *timeStr = [NSString stringWithFormat:@"%0.f", interval];//转为字符型

    相关文章

      网友评论

          本文标题:7.30关于时间戳转成时间格式

          本文链接:https://www.haomeiwen.com/subject/ggsklxtx.html