美文网首页
NSData及日期相关

NSData及日期相关

作者: Tony_HYH | 来源:发表于2017-03-24 20:58 被阅读29次

    项目中有一些与时间日期有关的处理,整理一下,不正确之处还望指正.


    1.当前时间:

    一般情况下,当前时间都是用

    NSDate *date = [NSDate date];

    用这个取年月日时没有问题的,但是有时候因为时区的影响,可能得到的时分秒不是特别准确,所以需要取到当前时区(地区)的时间:

    NSDate *date = [NSDate date];

    NSTimeZone *zone = [NSTimeZone systemTimeZone]; // 当前时区

    NSInteger interval = [zone secondsFromGMTForDate: date]; // 与标准时间时差

    NSDate *localDate = [date  dateByAddingTimeInterval: interval]; // 当前时区当前时间

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

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH-mm-ss"];

    NSString *nowDate = [dateFormatter stringFromDate:localDate];

    这样就得到了准确的当前时间



    2.星期几的问题:

    先写一个星期数组,注意星期日在最前面.

    以下的当前时间还是用 [NSDate date],也可以先为转化上面的;

    NSArray * arrWeek=[NSArray arrayWithObjects:@"星期日",@"星期一",@"星期二",@"星期三",@"星期四",@"星期五",@"星期六", nil];

    NSDate *date = [NSDate date];  // 当前时间

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian]; // 日历,历法

    NSDateComponents *comps = [[NSDateComponents alloc] init]; // 时间段,时间点

    NSInteger unitFlags = NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitWeekday | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond; // 需要得到的时间点(时间段)的时间单位

    comps = [calendar components:unitFlags fromDate:date];

    // 得到当前时间点的年月日星期几的信息 int类型 或者interger类型

    int week = (int)[comps weekday];

    int year=(int)[comps year];

    int month = (int)[comps month];

    int day = (int)[comps day];



    3.时间差:

    以求现在距离未来某一个时间点之间的时间差为例,得到的也是一个NSDateComponents时间点,

    NSDateFormatter *dateFomatter = [[NSDateFormatter alloc] init]; // 日期格式

    dateFomatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";

    NSDate *date = [NSDate date]; // 当前时间

    NSTimeZone *zone = [NSTimeZone systemTimeZone];

    NSInteger interval = [zone secondsFromGMTForDate:date];

    NSDate *localDate = [date dateByAddingTimeInterval:interval]; // 当前时区当前时间

    NSString *futureTime = @"2020-11-23 13:35:45"; // 未来的某一个时间

    NSString *nowDateStr = [dateFomatter stringFromDate:localDate];

    NSDate *futureDate = [dateFomatter dateFromString:openDateStr]; // 未来时间date

    localDate = [dateFomatter dateFromString:nowDateStr]; // 同一时间格式(dateFormat)下的当前时间

    // 当前日历

    NSCalendar *calendar = [NSCalendar currentCalendar];

    // 需要对比的时间数据(年月日时分秒)

    NSCalendarUnit unit = NSCalendarUnitYear | NSCalendarUnitMonth

    | NSCalendarUnitDay | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond;

    // 对比时间差

    NSDateComponents *dateComponent = [calendar components:unit fromDate:localDate toDate:futureDate options:0];

    // 显示时间差

    NSString *text = [NSString stringWithFormat:@"%ld年%ld月%ld天%ld时%ld分",dateComponent.year,dateComponent.month,dateComponent.day,dateComponent.hour,dateComponent.minute];

    相关文章

      网友评论

          本文标题:NSData及日期相关

          本文链接:https://www.haomeiwen.com/subject/iwfqottx.html