zoukankan      html  css  js  c++  java
  • NSDate与时间戳的那点事

    对于项目中常常使用的时间来说,通过时间戳的形式进行数据的操作能带来极大的方便,以下就时间戳的生成和转换通过Demo的形式进行解说

    声明一个时间类型的变量:

           // 获取当前的时间
            // 以下的第一个方法不提倡
            // NSDate *now1 = [[NSDate alloc]initWithTimeIntervalSinceNow:8*60*60];
            NSDate * today = [NSDate date];
            NSTimeZone *zone = [NSTimeZone systemTimeZone];
            NSInteger interval = [zone secondsFromGMTForDate:today];
            NSDate *localeDate = [today dateByAddingTimeInterval:interval];
            NSLog(@"%@", localeDate);
            // 时间转换成时间戳
            NSString *timeSp = [NSString stringWithFormat:@"%ld",(long)[localeDate timeIntervalSince1970]];
            NSLog(@"timeSp : %@", timeSp);

    时间戳转换成时间类型(NSDate)

            // 时间戳转换成日期
            NSDate *currentTime = [NSDate dateWithTimeIntervalSince1970:[timeSp intValue]];
            NSLog(@"currentTime : %@", currentTime);



  • 相关阅读:
    linux 杂类
    set
    C++ 基础 杂类
    linux 添加samba账户
    git 常用命令
    git 设置bitbucket 邮箱、用户
    C++ shared_ptr
    git 免密码配置
    2014的新目标
    为/Date(1332919782070)/转时间2013-09-23
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/4194319.html
Copyright © 2011-2022 走看看