zoukankan      html  css  js  c++  java
  • iOS开发 当前时间 时间戳 转换

    1.今天在做一个webservice的接口的时候,被要求传一个时间戳过去,然后就是开始在Google上找
    2.遇到两个问题,一,当前时间转化为时间戳,二,获取的当前时间和系统的时间相差8个小时
    一,转化的方法为
        NSString *timeSp = [NSString stringWithFormat:@"%d", (long)[localeDate timeIntervalSince1970]];
        NSLog(@"timeSp:%@",timeSp); //时间戳的值
     
    二,把获取的时间转化为当前时间
     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.完成
     
     
    ios 压缩http://my.oschina.net/CarlHuang/blog/144894
  • 相关阅读:
    kmp算法详解
    艾伦.席森.图灵
    gcd详解
    Shortest Prefixes 字典树模板
    Hat's Words 字典树变式
    统计难题 字典树模板
    Phone List 字典树模板
    字典树详解
    Basic Gcd Problem 线性筛
    codeforces 454 D. Little Pony and Harmony Chest(状压dp)
  • 原文地址:https://www.cnblogs.com/moyunmo/p/3410716.html
Copyright © 2011-2022 走看看