简体   繁体   English

将NSDate拆分为日期和时间

[英]Split a NSDate into day and time

I am trying to split a NSDate I receive from web service into two different dates in order to populate a tableView for events with sections for each day. 我试图将我从Web服务收到的NSDate拆分为两个不同的日期,以便为每天的部分填充tableView事件。 I figured the least complicated way to do the latter is to create a fetch request looking for unique days. 我认为执行后者最简单的方法是创建一个查找唯一日期的获取请求。

So I try to create a NSDate "day" but having the time component set to 00:00. 所以我尝试创建一个NSDate“day”但将时间组件设置为00:00。 I wonder if there is a more efficient way to achieve this: 我想知道是否有更有效的方法来实现这一目标:

if (eventoItemList.count > 0) {
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

        NSDateFormatter *dayFormatter = [[NSDateFormatter alloc] init];
        [dayFormatter setDateFormat:@"yyyy-MM-dd"];

        for (GDataXMLElement *eventoItem in eventoItemList) {
            BOEvent *event = [[BOEvent alloc] init];
            NSString *idEventStr = [[[eventoItem elementsForName:@"id"] objectAtIndex:0] stringValue];                       
            NSString *name = [[[eventoItem elementsForName:@"titulo"] objectAtIndex:0] stringValue];
            NSString *type = [[[eventoItem elementsForName:@"tipo"] objectAtIndex:0] stringValue];
            NSString *descr = [[[eventoItem elementsForName:@"descripcion"] objectAtIndex:0] stringValue];
            NSString *address = [[[eventoItem elementsForName:@"direccion"] objectAtIndex:0] stringValue];
            NSDate *date = [dateFormatter dateFromString:[[[eventoItem elementsForName:@"fecha"] objectAtIndex:0] stringValue]];
            NSString *action =  [[[eventoItem elementsForName:@"accion"] objectAtIndex:0] stringValue];

            [event setIdEvent:[idEventStr integerValue]];
            [event setName:name];
            [event setType:type];
            [event setDesc:descr];
            [event setAddress:address];
            [event setAction:action];
            [event setDate:date];
            [event setDayDate:[dayFormatter dateFromString:[dayFormatter stringFromDate:date]]];
            [events addObject:event];
        }
    }

Thank you for your help. 谢谢您的帮助。

sample code for splitting a NSDate into two NSDates (date only, time only) 用于将NSDate拆分为两个 NSDate的示例代码(仅限日期,仅限时间)

     NSDate *date = [NSDate date];
    NSCalendar *gregorian = [NSCalendar currentCalendar];

    unsigned unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit |  NSDayCalendarUnit;
    NSDateComponents *comps = [gregorian components:unitFlags fromDate:date];    
    NSDate *dateOnly = [gregorian dateFromComponents:comps];

    unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit |  NSDayCalendarUnit;
    comps = [gregorian components:unitFlags fromDate:date];    
    NSDate *timeOnly = [gregorian dateFromComponents:comps];

    NSLog(@"%@ = \n\tDate: %@ \n\tTime: %@", date, dateOnly, timeOnly);

sample code for outputting NSDate in two NSStrings 用于在两个NSStrings中输出NSDate的示例代码

    NSDate *date = [NSDate date];

    NSDateFormatter *f = [[NSDateFormatter alloc] init];
    [f setDateStyle:NSDateFormatterFullStyle];
    [f setTimeStyle:NSDateFormatterNoStyle];
    NSString *dateOnly = [f stringFromDate:date];

    [f setTimeStyle:NSDateFormatterFullStyle];
    [f setDateStyle:NSDateFormatterNoStyle];
    NSString *timeOnly = [f stringFromDate:date];

    NSLog(@"%@ = \n\tDate: %@ \n\tTime: %@", date, dateOnly, timeOnly);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM