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;

     

    }

  • 相关阅读:
    HashSet集合保证元素唯一性的原理 底层代码 ---有用
    集合(下) ---有用
    集合(上) Colection方法 并发修改异常
    Hive -- Hive面试题及答案sql语句 ---阿善有时间看
    hive面试题总结(2020最新版) hive优化方面 ---阿善重要
    hive面试题总结(2020最新版)
    Hive常见面试题1.0
    Hive面试题收集 ---阿善重要
    promise的三个缺点
    js中常见的高阶函数
  • 原文地址:https://www.cnblogs.com/qwer-BHS/p/5316143.html
Copyright © 2011-2022 走看看