如何在 TapKu 库中选择多个日期? [英] How to select multiple dates in TapKu library?

查看:27
本文介绍了如何在 TapKu 库中选择多个日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想显示tapkilibrary 中的多个选定日期 .like 突出显示14aug2011 到 18aug2011 之间的日期 .

I would like to show the multiple selected dates in tapkilibrary .like highlight the dates between 14aug2011 to 18aug2011 .

推荐答案

    -(NSArray*)calendarMonthView:(TKCalendarMonthView *)monthView marksFromDate:(NSDate *)startDate toDate:(NSDate *)lastDate{

NSLog(@"Date Selected is %@",date);
        //txtbdate.text=date;

    NSDateFormatter *timeFormat = [[[NSDateFormatter alloc] init] autorelease];
    NSTimeZone *gmt = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
    [timeFormat setDateFormat:@"yyyy-MM-dd"];
    [timeFormat setTimeZone:gmt];


    //[timeFormat setLocale:[NSLocale currentLocale]];
    //[timeFormat setTimeZone:[NSTimeZone localTimeZone]]; 
    NSString *theTime = [timeFormat stringFromDate:date];   
    NSLog(@"%@",theTime); 
    objappdel.strdate=theTime;

    [tkmonthView reload];
    AppointmentDetail *appointmentDetail=[[AppointmentDetail alloc]initWithNibName:@"AppointmentDetail" bundle:nil];
    [self.navigationController pushViewController:appointmentDetail animated:YES];
    [appointmentDetail release];
}

- (NSArray*)calendarMonthView:(TKCalendarMonthView *)monthView marksFromDate:(NSDate *)startDate toDate:(NSDate *)lastDate
{   
    NSMutableArray * data = [[NSMutableArray alloc] init];
    NSDateFormatter *dateForm = [[NSDateFormatter alloc] init];
    NSTimeZone *gmt = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
    [dateForm setDateFormat:@"yyyy-MM-dd"];
    [dateForm setTimeZone:gmt];
    NSDate *date ;


    for (int i=0; i<[objappdel.arrDate count]; i++)
    {
        NSString *time;
        time=[objappdel.arrDate objectAtIndex:i];
        //time=  [[[jobData valueForKey:@"Record"] objectAtIndex:i] valueForKey:@"JobStartDate"];
        //time = [[time componentsSeparatedByString:@" "] objectAtIndex:0];
        date = [dateForm dateFromString:time];
        [data addObject:[NSString stringWithFormat:@"%@",date]];
    }
    NSArray *copy = [data copy];
        NSInteger index = [copy count] - 1;
        for (id object in [copy reverseObjectEnumerator]) 
        {
            if ([data indexOfObject:object inRange:NSMakeRange(0, index)] != NSNotFound) 
            {
                [data removeObjectAtIndex:index];
            }
            index--;
        }

    NSLog(@"sorted dates are %@",copy);
    // Initialise empty marks array, this will be populated with TRUE/FALSE in order for each day a marker should be placed on.
    NSMutableArray *marks = [NSMutableArray array];

    // Initialise calendar to current type and set the timezone to never have daylight saving
    NSCalendar *cal = [NSCalendar currentCalendar];
    [cal setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];

    // Construct DateComponents based on startDate so the iterating date can be created.
    // Its massively important to do this assigning via the NSCalendar and NSDateComponents because of daylight saving has been removed 
    // with the timezone that was set above. If you just used "startDate" directly (ie, NSDate *date = startDate;) as the first 
    // iterating date then times would go up and down based on daylight savings.
    NSDateComponents *comp = [cal components:(NSYearCalendarUnit | NSMonthCalendarUnit |
                                              NSDayCalendarUnit | NSWeekdayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit) 
                                    fromDate:startDate];
    NSDate *d = [cal dateFromComponents:comp];

    // Init offset components to increment days in the loop by one each time
    NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];
    [offsetComponents setDay:1];    


    // for each date between start date and end date check if they exist in the data array
    while (YES) {
        // Is the date beyond the last date? If so, exit the loop.
        // NSOrderedDescending = the left value is greater than the right
        if ([d compare:lastDate] == NSOrderedDescending) 
        {
            break;
        }

        // If the date is in the data array, add it to the marks array, else don't
        //NSLog(@"%@",[d description]);

        if ([data containsObject:[d description]]) {
            [marks addObject:[NSNumber numberWithBool:YES]];
        } else {
            [marks addObject:[NSNumber numberWithBool:NO]];
        }

        // Increment day using offset components (ie, 1 day in this instance)
        d = [cal dateByAddingComponents:offsetComponents toDate:d options:0];
    }

    [offsetComponents release];

    return [NSArray arrayWithArray:marks];
}

使用这个委托方法.它将返回一个您要突出显示的日期的 NSArray.

Use this delegate method. It will return an NSArray of dates which you want to highlight.

这篇关于如何在 TapKu 库中选择多个日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆