簡體   English   中英

根據給定的EKRecurrenceRule不添加EKEvent

[英]EKEvent is not added according to given EKRecurrenceRule

我正在嘗試使用遞歸規則RRULE將事件添加到日歷中:FREQ = YEARLY; BYMONTH = 6,7; BYDAY = 1TH

所以根據這個規則,事件應該每年添加一次,每年的6月1日和7月,直到到期日,我已經在我的項目中設置了。

在我的項目中,會創建事件,但不會根據重復規則創建事件。 使用以下代碼,事件僅在6月1日星期四添加。 為什么每個7月1日星期四都沒有添加活動呢?

這是.m文件代碼

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self createEvent];
}

- (void)createEvent
{
    EKEventStore *eventStore = [[EKEventStore alloc] init];
    EKEvent *event = [EKEvent eventWithEventStore:eventStore];
    event.title = @"testRecurrenceRule";
    event.location = @"Dhaka";
    [event setCalendar:[eventStore defaultCalendarForNewEvents]];
    event.startDate = [self dateFromString:@"2013-06-18T21:00:00+06:00"];
    event.endDate = [self dateFromString:@"2013-06-18T22:00:00+06:00"];

    id recurrenceRule = [self recurrenceRuleForEvent];
    if(recurrenceRule != nil)
        [event addRecurrenceRule:recurrenceRule];

    if ([eventStore respondsToSelector:@selector(requestAccessToEntityType:completion:)])
    {
        // iOS 6 and later
        [eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) {
            if (granted)
            {
                dispatch_async(dispatch_get_main_queue(), ^{
                    [self saveTheEvent:event eventStore:eventStore];
                    //[eventStore saveEvent:event span:EKSpanThisEvent error:error];
                });
            }
            else
            {
                dispatch_async(dispatch_get_main_queue(), ^{

                    //do nothing
                });
            }
        }];
    }
    else
    {
        [self saveTheEvent:event eventStore:eventStore];
    }

    textView.text = [NSString stringWithFormat:@"Event has been added with recurrence rule %@",recurrenceRule];
}

- (void)saveTheEvent:(EKEvent *)aEvent eventStore:(EKEventStore *)aStore
{
    [aStore saveEvent:aEvent span:EKSpanThisEvent error:NULL];
}

- (EKRecurrenceRule *)recurrenceRuleForEvent
{
    //just creating a recurrence rule for RRULE:FREQ=YEARLY;BYMONTH=6,7;BYDAY=1TH
    // setting the values directly for testing purpose.

    //FREQ=YEARLY
    EKRecurrenceFrequency recurrenceFrequency = EKRecurrenceFrequencyYearly;
    NSInteger recurrenceInterval = 1;                                             
    EKRecurrenceEnd *endRecurrence = nil;                                         
    NSMutableArray *monthsOfTheYearArray = [NSMutableArray array];               
    NSMutableArray *daysOfTheWeekArray = [NSMutableArray array];                
    NSMutableArray *daysOfTheMonthArray = [NSMutableArray array];               
    NSMutableArray *weeksOfTheYearArray = [NSMutableArray array];              
    NSMutableArray *daysOfTheYearArray = [NSMutableArray array];          
    NSMutableArray *setPositionsArray = [NSMutableArray array];         

    //BYMONTH=6,7
    [monthsOfTheYearArray addObject:[NSNumber numberWithInt:6]];
    [monthsOfTheYearArray addObject:[NSNumber numberWithInt:7]];

    //BYDAY=1TH
    [daysOfTheWeekArray addObject:[EKRecurrenceDayOfWeek dayOfWeek:5 weekNumber:1]];

    endRecurrence = [EKRecurrenceEnd recurrenceEndWithEndDate:[self dateFromString:@"2018-12-15T22:30+06:00"]];

    EKRecurrenceRule *recurrence = [[EKRecurrenceRule alloc] initRecurrenceWithFrequency:recurrenceFrequency
                                                                                interval:recurrenceInterval
                                                                           daysOfTheWeek:daysOfTheWeekArray
                                                                          daysOfTheMonth:daysOfTheMonthArray
                                                                         monthsOfTheYear:monthsOfTheYearArray
                                                                          weeksOfTheYear:weeksOfTheYearArray
                                                                           daysOfTheYear:daysOfTheYearArray
                                                                            setPositions:setPositionsArray
                                                                                     end:endRecurrence];
    return recurrence;
}

- (NSDate *)dateFromString:(NSString *)string
{
    //check if the date string in null
    if ([string length] == 0)
        return nil;

    NSString *dateString = nil;
    NSString *modifiedString = nil;
    BOOL secSpotMissing = false;

    NSRange range = [string rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"T"]];
    if (range.location != NSNotFound)
    {
        dateString = [string substringFromIndex:range.location];

        range = [dateString rangeOfCharacterFromSet:[NSCharacterSet characterSetWithCharactersInString:@"+-Z"]];
        if (range.location != NSNotFound)
        {
            //seperate the time portion of date string and checking second field is missing or not. like is it HH:mm or HH:mm:ss?
            if ([[[dateString substringToIndex:range.location] componentsSeparatedByString:@":"] count] < 3)
                secSpotMissing = true;

            //seperate the time zone portion and checking is there any extra ':' on it. It should like -0600 not -06:00. If it has that extra ':', just replacing it here.
            dateString = [dateString substringFromIndex:range.location];
            if([dateString hasSuffix:@"Z"])
                modifiedString = [dateString stringByReplacingOccurrencesOfString:@"Z" withString:@"+0000"];
            else
                modifiedString = [dateString stringByReplacingOccurrencesOfString:@":" withString:@""];
            string = [string stringByReplacingOccurrencesOfString:dateString withString:modifiedString];
        }
    }
    else
        return nil;

    // converting the date string according to it's format.
    NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
    if (secSpotMissing)
        [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mmZZZ"];
    else
        [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZZZ"];
    return [dateFormatter dateFromString:string];
}

有人可以幫我解決這個問題嗎?

這似乎是另一個問題的重復。 基本上,根據“BYDAY”規則,YEARLY頻率的第1周意味着一年中的第一周 - 而不是每個月的第一周。

@Shuvo,我沒看過rfc。 但這里是Apple文檔EKRecurrenceDayOfWeek

EKRecurrenceDayOfWeek類表示與EKRecurrenceRule對象一起使用的星期幾。 一周中的某一天可以選擇具有周數,表示重復規則頻率中的特定日期。 例如,星期二的星期幾和星期數2的星期幾表示每月復發規則中每個月的第二個星期二,以及每年復發規則中每年的第二個星期二。

當你說“第一個星期四”時,這是正確的 - 除了在每年的背景下,它是一年的第一個星期四。

該錯誤得到了Apple的確認,至少在iOS 7.1.3之前(這是目前最新的版本)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM