zoukankan      html  css  js  c++  java
  • 时间戳和当前时间互相转化

    1,转化的方法为

        NSString *timeSp = [NSStringstringWithFormat:@"%d", (long)[localeDate timeIntervalSince1970]];

        NSLog(@"timeSp:%@",timeSp); //时间戳的值

    2,把获取的时间转化为当前时间

     NSDate *datenow = [NSDate date];//现在时间,你可以输出来看下是什么格式

        NSTimeZone *zone = [NSTimeZone systemTimeZone];

        NSInteger interval = [zone secondsFromGMTForDate:datenow];

        NSDate *localeDate = [datenow  dateByAddingTimeInterval: interval];

        NSLog(@"%@", localeDate);

     

    3.把时间戳转化为时间的方法

     

        NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:1363948516];

        NSLog(@"1363948516  = %@",confromTimesp);

     

    4.完成

  • 相关阅读:
    委托-张子扬博客
    委托-雾中人博客
    委托基础
    C# 字典
    相机标定目的<3>
    相机标定程序详解<2>
    相机标定 <1>
    Opencv 几何变换<9>
    Opencv ROI<8>
    Opencv 通道分离合并<7>
  • 原文地址:https://www.cnblogs.com/zhangyuqing/p/3546592.html
Copyright © 2011-2022 走看看