gpt4 book ai didi

iOS:如何获取通过调用 EKEventEditViewController 创建的事件的标识符

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:40 24 4
gpt4 key购买 nike

在我的应用中,用户可以创建事件。这是通过向用户展示用于创建事件的 iOS 用户界面来实现的:

    - (IBAction)addTermin:(id)sender
{
// Create an instance of EKEventEditViewController
EKEventEditViewController *addController = [[EKEventEditViewController alloc] init];

// Set addController's event store to the current event store
addController.eventStore = self.eventStore;
addController.editViewDelegate = self;
[self presentViewController:addController animated:YES completion:nil];
}

所以,我实现委托(delegate)方法:

    - (void)eventEditViewController:(EKEventEditViewController *)controller
didCompleteWithAction:(EKEventEditViewAction)action
{
MRHomeViewController * __weak weakSelf = self;
// Dismiss the modal view controller
[self dismissViewControllerAnimated:YES completion:^
{
if (action != EKEventEditViewActionCanceled)
{
dispatch_async(dispatch_get_main_queue(), ^{
// Re-fetch all events happening in the next 24 hours
weakSelf.eventsList = [self fetchEvents];
// Update the UI with the above events
[weakSelf.termineTableView reloadData];
});
}
}];
}

所以,稍后我想检索用户创建的事件。我在想,在某个地方,在委托(delegate)方法中,我可以获得对新创建事件的引用吗?

或者是否有另一种方法可以稍后仅获取用户创建的事件?

最佳答案

要使其正常工作,您需要首先创建一个新的 EKEvent,保留对它的引用,并将其传递给您的 EKEventEditViewController:

    self.newEvent = [EKEvent eventWithEventStore:self.eventStore];
addController.event = newEvent;

在委托(delegate)方法中,检查 EKEventEditViewActionSaved,然后查阅 self.newEvent 以找到您需要的有关事件的信息。如果您想保留对事件的长期引用,您可以存储 eventIdentifier 或其他字段以供以后查找。

关于iOS:如何获取通过调用 EKEventEditViewController 创建的事件的标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22479903/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com