2

良い一日!UIActivityItems経由で「イベントをカレンダーに保存」機能を使用します。その関数で、新しいカレンダーを作成し、このカレンダーにイベントを追加します。

EKEventStore* eventStore = [[EKEventStore alloc] init];

// Get the calendar source
EKSource* localSource;
for (EKSource* source in eventStore.sources) {
    if (source.sourceType == EKSourceTypeLocal)
    {
        localSource = source;
        break;
    }
}

if (!localSource)
    return;

EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
calendar.source = localSource;
calendar.title = @"New Calendar";

NSError *errorCalendar;
[eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar]; 

EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
event.title     = @"Title";

event.startDate = startDate;
event.endDate   = endDate;

[event setCalendar:newCalendar];
// and etc.

そしてその働き。ただし、次回は「New Calendar」という名前の新しいカレンダーを再度作成します。その名前のカレンダーが既に存在するかどうかを確認するにはどうすればよいですか? また、カレンダーの種類を変更するにはどうすればよいですか? 誕生日などに

4

1 に答える 1

4

まず、 Apple によるとEventStore、アプリの存続期間中、単一のインスタンスを使用する必要があります。

eventStoreしたがって、View Controller のプロパティを作成することをお勧めします。

@property (nonatomic, retain) EKEventStore *eventStore;

そしてあなたのviewDidLoad:

self.eventStore = [[EKEventStore alloc] init];

eventStoreこれで、何かを行う前に、読み書きしている同じインスタンスを確認できます。

-(BOOL)checkForCalendar {
    //get an array of the user's calendar using your instance of the eventStore
    NSArray *calendarArray = [self.eventStore calendarsForEntityType:EKEntityTypeEvent];

    // The name of the calendar to check for. You can also save the calendarIdentifier and check for that if you want
    NSString *calNameToCheckFor = @"New Calendar";

    EKCalendar *cal;

    for (int x = 0; x < [calendarArray count]; x++) {

        cal = [calendarArray objectAtIndex:x];
        NSString *calTitle = [cal title];

        // if the calendar is found, return YES
        if (([calTitle isEqualToString:calNameToCheckFor]) {

            return YES;
        }
    }

    // Calendar name was not found, return NO;
    return NO;
}

-(void)saveNewEvent {

    // If the calendar does not already exist, create it before you save the event.
    if ([self checkForCalendar] == NO) { 

        // Get the calendar source
        EKSource* localSource;
        for (EKSource* source in eventStore.sources) {
            if (source.sourceType == EKSourceTypeLocal)
            {
                localSource = source;
                break;
            }
        }

        if (!localSource)
            return;

        EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
        calendar.source = localSource;
        calendar.title = @"New Calendar";

        NSError *errorCalendar;
        [eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar];

    } 
        EKEvent *event  = [EKEvent eventWithEventStore:self.eventStore];
        event.title     = @"Title";
        event.startDate = startDate;
        event.endDate   = endDate;
        [event setCalendar:newCalendar];
        // and etc.
}
于 2013-11-19T16:17:00.220 に答える