1

リマインダー コンポーネントを持つアプリに取り組んでいます。Calendar Storeを使用してカレンダーのリストを取得しています。タスクを追加するカレンダーをユーザーに選択してもらいたいと考えています。問題は、CalCalendarがイベント カレンダーとタスク カレンダーを区別していないように見えることです。

NSArray* calendars = [[CalCalendarStore defaultCalendarStore] calendars];
for( CalCalendar* aCalendar in calendars ) {
    if( aCalendar.isEditable ) {
        NSLog( @"editable calendar: %@", aCalendar );
    }
}

これは以下を出力します:

editable calendar: CalCalendar <0x6e04d10> {UID = 8AA8FFAD-D781-47F7-9231-CF66E1753983; title = Work; notes = (null); color = NSCalibratedRGBColorSpace 0.054902 0.380392 0.72549 1; type = CalDAV; editable = 1}
editable calendar: CalCalendar <0x6e05000> {UID = A7F4A1B2-D1CF-4A20-9F84-CD1A1E99773E; title = Home; notes = ; color = NSCalibratedRGBColorSpace 0.72549 0.054902 0.156863 1; type = CalDAV; editable = 1}
editable calendar: CalCalendar <0x6e050f0> {UID = 43B14D2A-9976-461C-8EFE-5FA029381828; title = Personal; notes = (null); color = NSCalibratedRGBColorSpace 0.901961 0.784314 0 1; type = CalDAV; editable = 1}
editable calendar: CalCalendar <0x6e05140> {UID = F42EC365-20AC-4251-B45E-FB7F169928F0; title = Mac; notes = (null); color = NSCalibratedRGBColorSpace 0.054902 0.380392 0.72549 1; type = Local; editable = 1}
editable calendar: CalCalendar <0x6e05190> {UID = FF771FF9-3969-4001-BBA4-9B7B00E80291; title = Cloud 2; notes = (null); color = NSCalibratedRGBColorSpace 0.054902 0.380392 0.72549 1; type = CalDAV; editable = 1}
editable calendar: CalCalendar <0x6e051e0> {UID = 40234537-869C-4CC2-89B9-DD4F7D36C169; title = Groceries; notes = ; color = NSCalibratedRGBColorSpace 0.443137 0.101961 0.462745 1; type = CalDAV; editable = 1}

最初の 2 つがイベント カレンダーで、最後の 4 つがタスク リストであることはわかっていますそして、iCal は間違いなくその違いを認識しています。なぜなら、iCal はイベント用のイベント カレンダーと、タスク用のタスク カレンダーのみを表示するからです。

しかし、何かが欠けていない限り、これをプログラムで判断するために Calendar Store API を使用する方法はないようです。

更新: rdar://10377730を見つけたので、これに気付いたのは私だけではないようです。rdar://10980542として、自分のレポートを提出しました

4

1 に答える 1

1

あまり満足していませんが、現在使用している回避策は、各カレンダーにタスクを作成することです. イベント カレンダーでタスクを作成しようとすると、エラーが発生します。次のようになります。

- (BOOL) isCalendarAUsableTaskList:(CalCalendar*)aCalendar
{
    if( !aCalendar.isEditable ) return NO;

    // Try to make a task here.
    CalTask* newTask = [CalTask task];
    newTask.calendar = aCalendar;
    newTask.title = @"Test Item";
    NSError* anError = nil;
    if( ![[CalCalendarStore defaultCalendarStore] saveTask:newTask error:&anError] ) {
        // Couldn't make a task, this calendar is no bueno.
        NSLog( @"Error saving task to calendar %@ (%@)", aCalendar.title, [anError localizedDescription] );
        return NO;
    }

    // Created a task.  Now clean up on our way out.
    NSLog( @"Saved task to calendar %@", aCalendar.title );
    [[CalCalendarStore defaultCalendarStore] removeTask:newTask error:nil];

    return YES;
}
于 2012-03-04T18:36:09.160 に答える