zoukankan      html  css  js  c++  java
  • OC ----关于时间的处理

     

    //获得当前时间距1970的秒数

    - (NSString *)setCurrTimeLenght

    {

        NSTimeInterval time = [[NSDate date] timeIntervalSince1970];

        NSString *timeLenght = [NSString stringWithFormat:@"%0.0f",time];

        return timeLenght;

    }

     

    //根据距离1970年的秒数算给定秒数的日期时间

    - (NSString *)getTimeString

    {

        NSString *strTime = [[NSString alloc]initWithString:self];

        

        NSDate *mydate1970 = [NSDate dateWithTimeIntervalSince1970: strTime.length >

    ([self setCurrTimeLenght].length+2)

     ? ([strTime longLongValue]/1000) : [strTime longLongValue]];

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

        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];  //时间格式

        

        dateFormatter.locale = [NSLocale localeWithLocaleIdentifier:@"zh_CN"];

        strTime = [dateFormatter stringFromDate:mydate1970];

        

        return strTime;

    }

     

    //获取只有时分秒

    - (NSString *)getHoursMinutesString

    {

        NSString *strTime = [[NSString alloc]initWithString:self];

        NSDate *mydate1970 = [NSDate dateWithTimeIntervalSince1970: strTime.length > ([self setCurrTimeLenght].length+2) ? ([strTime longLongValue]/1000) : [strTime longLongValue]];

        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];//@"yyyy-MM-dd HH:mm:ss"

        [dateFormatter setDateFormat:@"HH:mm:ss"];

        

        dateFormatter.locale = [NSLocale localeWithLocaleIdentifier:@"zh_CN"];

        strTime = [dateFormatter stringFromDate:mydate1970];

        

        

        return strTime;

    }

     

     

    //获取时分

    - (NSString *)getHoursMinString

    {

        NSString *strTime = [[NSString alloc]initWithString:self];

        NSDate *mydate1970 = [NSDate dateWithTimeIntervalSince1970: strTime.length > ([self setCurrTimeLenght].length+2) ? ([strTime longLongValue]/1000) : [strTime longLongValue]];

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

        [dateFormatter setDateFormat:@"HH:mm"];

        

        dateFormatter.locale = [NSLocale localeWithLocaleIdentifier:@"zh_CN"];

        strTime = [dateFormatter stringFromDate:mydate1970];

        

        return strTime;

     

    }

  • 相关阅读:
    [To be translated] Nova:libvirt image 的生命周期
    Neutron 理解(5):Neutron 是如何向 Nova 虚机分配固定IP地址的 (How Neutron Allocates Fixed IPs to Nova Instance)
    Cinder 调试
    SSH 无密码访问其它机器 和 Windows 上 putty 无密码访问 Linux 机器
    Hadoop 数据库
    Hadoop 分布式文件系统
    C++ 在继承中虚函数、纯虚函数、普通函数,三者的区别
    Google Scholar 论文参考文献的自动生成
    Linux shell ${}简单用法
    C/C++ 获取目录下的文件列表信息
  • 原文地址:https://www.cnblogs.com/qwer-BHS/p/5316143.html
Copyright © 2011-2022 走看看