美文网首页
iOS 时间戳转换为时间

iOS 时间戳转换为时间

作者: 西博尔 | 来源:发表于2016-07-12 17:59 被阅读793次

    iOS 时间戳转换为时间

    NSString *str=@"1368082020";//时间戳

    NSTimeInterval time=[str doubleValue]+28800;//因为时差问题要加8小时 == 28800 sec
    
    NSDate *detaildate=[NSDate dateWithTimeIntervalSince1970:time];
    
    NSLog(@"date:%@",[detaildate description]);
    

    //实例化一个NSDateFormatter对象

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    
    //设定时间格式,这里可以设置成自己需要的格式
    
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    
    
    
    NSString *currentDateStr = [dateFormatter stringFromDate: detaildate];

    相关文章

      网友评论

          本文标题:iOS 时间戳转换为时间

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