时间戳转换成日期

    NSString *newdate = @"1466696700000";//[_dataArray[indexPath.section]update_time];

    NSTimeInterval time=[newdate doubleValue]/1000.0;//因为时差问题要加8小时 == 28800 sec-28800

    NSDate *detaildate=[NSDate dateWithTimeIntervalSince1970:time];

    //实例化一个NSDateFormatter对象

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

    //设定时间格式,这里可以设置成自己需要的格式

    [dateFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];//:ss

    NSString *currentDateStr = [dateFormatter stringFromDate:detaildate];

你可能感兴趣的:(iOS,开发)