IOS-OC 时间戳转化为时间



做打车项目 用到时间戳了 

所以就百度了一下 很简单


    NSString*str= dic[@"start_time"];

    NSTimeInterval time=[str doubleValue];

    NSDate*detaildate=[NSDate dateWithTimeIntervalSince1970:time];

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

    [dateFormatter setDateFormat:@"yyyy MM-dd HH:mm"];

    NSString*currentDateStr = [dateFormatter stringFromDate:detaildate];

    cell.dateLabel.text  = currentDateStr;


你可能感兴趣的:(IOS-OC 时间戳转化为时间)