如何根据目标c中的月份创建周列表?

时间:2014-02-05 07:29:59

标签: iphone objective-c date ios7 nscalendar

我需要根据月份创建列表周,我尝试使用以下代码,但我无法得到正确答案。任何人都可以为我的以下输出提供正确的解决方案:

NSDate *weekDate = [NSDate date];
NSCalendar *myCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *currentComps = [myCalendar components:( NSYearCalendarUnit | NSMonthCalendarUnit | NSWeekOfMonthCalendarUnit| NSWeekdayCalendarUnit) fromDate:weekDate];
for (int i = 0; i <=10 ;i++)
{
    [currentComps setWeekOfMonth:i];

[currentComps setWeekday:1]; // 1: sunday
NSDate *firstDayOfTheWeek = [myCalendar dateFromComponents:currentComps];
[currentComps setWeekday:7]; // 7: saturday
NSDate *lastDayOfTheWeek = [myCalendar dateFromComponents:currentComps];

NSDateFormatter *myDateFormatter = [[NSDateFormatter alloc] init];
myDateFormatter.dateFormat = @"'week' w dd/MM";
NSString *firstStr = [myDateFormatter stringFromDate:firstDayOfTheWeek];
NSString *secondStr = [myDateFormatter stringFromDate:lastDayOfTheWeek];

NSLog(@"first - %@ \nlast - %@", firstStr, secondStr);
}

我有这个输出: 第一周 - 19/01年第4周 最后一周 - 第4周25/01  第一周 - 第5周26/01 最后一周 - 第5周01/02  第一周 - 第02周02/02 最后一周 - 08年8月6日  第一周 - 09年9月7日 最后一周 - 7月15日 第一周 - 8月16日 最后一周 - 8月22日 第一周 - 9月23日 最后一周 - 09年1月9日 第一周 - 第10周02/03 最后一周 - 08/03 第一周 - 第11周09/03 最后一周 - 11月15日 第一周 - 12月16日 最后一周 - 12月22日  第一周 - 第13周23/03 最后一周 - 13月29日  第一周 - 第14周30/03 最后一周 - 第14天05/04

但我不需要前两周,因为我需要当前一周到十个星期后的月份列表,但是这里结果来了两个星期之前列表也来了我的当前一周(第一周 - 第6周02/02 最后一周 - 08年2月6日)所以任何人帮助我。

2 个答案:

答案 0 :(得分:4)

最后,我在NSCalendar中有结果周列表,其中包含开始日期和结束日期。

NSCalendar *calendar = [[NSCalendar alloc]initWithCalendarIdentifier:NSGregorianCalendar];
    // Create the start date components
    NSDateComponents *oneDayAgoComponents = [[NSDateComponents alloc] init];

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
for(int currentdateindexpath=0;currentdateindexpath<=10;currentdateindexpath++)
{
    [oneDayAgoComponents setWeek:currentdateindexpath];
        NSDate *monthAgo = [calendar dateByAddingComponents:oneDayAgoComponents
                                                     toDate:[NSDate date]
                                                    options:0];
        [formatter setDateFormat:@"'week'W"];
        NSString *stringFromDate = [formatter stringFromDate:monthAgo];

        NSLog(@"seg %d",statusseg.selectedSegmentIndex);
        //NSDate *today = [[NSDate alloc] init];
    //NSCalendar *gregorian = [[NSCalendar alloc]initWithCalendarIdentifier:NSGregorianCalendar];

        // Get the weekday component of the current date
       NSDateComponents* subcomponent = [calendar components:NSWeekdayCalendarUnit
                                                           fromDate:[NSDate date]];

        /*
         Create a date components to represent the number of days to subtract from the current date.
         The weekday value for Sunday in the Gregorian calendar is 1, so subtract 1 from the number of days to subtract from the date in question.  (If today is Sunday, subtract 0 days.)
         */
       // NSDateComponents *componentsToSubtract = [[NSDateComponents alloc] init];
        [oneDayAgoComponents setDay: 0 - ([subcomponent weekday] - 1)];

        NSDate *beginningOfWeek = [calendar dateByAddingComponents:oneDayAgoComponents
                                                             toDate:[NSDate date] options:0];
        NSLog(@" beginningOfWeek %@",beginningOfWeek);
        [formatter setDateFormat:@"dd/MM/yy"];
        NSString *weekstartdate = [formatter stringFromDate:beginningOfWeek];
        NSLog(@"weekstartdate %@",weekstartdate);
        /*
         Optional step:
         beginningOfWeek now has the same hour, minute, and second as the original date (today).
         To normalize to midnight, extract the year, month, and day components and create a new date from those components.
         */

        NSDateComponents *components =
        [calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit |
                               NSDayCalendarUnit) fromDate: beginningOfWeek];
        beginningOfWeek = [calendar dateFromComponents:components];
        NSLog(@"Show %@",beginningOfWeek);
        //+++++++++++++++++++ start week+++++++++++++++
        [oneDayAgoComponents setDay:7- ([subcomponent weekday])];

        NSDate *endOfWeek = [calendar dateByAddingComponents:oneDayAgoComponents
                                                            toDate:[NSDate date] options:0];
        NSLog(@" endOfWeek %@",endOfWeek);
        [formatter setDateFormat:@"dd/MM/yy"];
        NSString *weekendtdate = [formatter stringFromDate:endOfWeek];
        NSLog(@"weekendtdate %@",weekendtdate);
        _topdate_lbl.text=[NSString stringWithFormat:@"%@ %@ to%@ ",stringFromDate,weekstartdate,weekendtdate];
}

答案 1 :(得分:3)