0

タイトル文字列を使用してイベントのビューを表示するときにタイトルが示唆するものが、表示されたEventKitビューに表示されず、単に空白です

  EKEventStore *es = [[EKEventStore alloc] init];
                EKEventEditViewController *controller = [[EKEventEditViewController alloc] init];
                controller.eventStore = es;
                controller.editViewDelegate = self;

                EKEvent *event  = [EKEvent eventWithEventStore:eventStore];
                event.title = @"This is an event"; //does not appear in presented view

               [self.editController presentModalViewController:controller animated:YES];

               [event setCalendar:[eventStore defaultCalendarForNewEvents]];
4

1 に答える 1

1

イベントオブジェクトをコントローラーに割り当てる必要があります。

controller.event = event;
于 2013-01-01T12:31:19.587 に答える