编辑和删除现有的EKEvent?

时间:2012-03-01 20:53:05

标签: iphone objective-c cocoa-touch ipad eventkit

我在我的应用程序中使用Kal日历,(希望这不会改变太多)但我从中得到一个EKEvent对象,具体取决于日历上的用户选择。

无论如何,我如何编辑和删除已经存在的事件?即我收到的EKEvent?

我需要以编程方式执行此操作,我不使用任何Apple预先制作的EKEventViewController。

我可以成功创建和保存新活动,但我不确定如何编辑或删除现有活动,任何帮助将不胜感激,谢谢。

1 个答案:

答案 0 :(得分:8)

完整的答案几乎需要一个演示项目。

其他方法只是为您提供Event Kit Programming Guide的链接。

由于您没有提供任何代码(您已经尝试过的),我希望这个工作应用程序的摘录能够将您推向正确的轨道。

请注意,由于应用程序的具体细节,我对EKEventViewController进行了细分 - 这不是必需的。我只是因为原始的EKEventViewController而对它进行了子类化 没有产生黑色navigationBar(这也被报告为一个错误,如果它是,现在不要 已经修好了。

您知道如何向日历添加活动,因此无需撰写有关获取EKEventStoreEKCalendar的参考的信息。

您也没有询问如何从日历中检索事件,所以让我们假设您已经有某种机制来选择(接收)事件并且您想要编辑它。让我们说它是:

EKEvent *selectedEvent = (EKEvent *)[events objectAtIndex: selectedIndex];

我将此viewController创建为appDelegate的属性 - 您可能有更好的解决方案。 appDelegate也包含eventStoredefaultCalendar参考 - 您的方法可能会有所不同。

appDelegate.detailViewController = [[MPEventViewController alloc] initWithNibName:nil bundle:nil];  
appDelegate.detailViewController.event = selectedEvent;
appDelegate.detailViewController.eventStore = appDelegate.eventStore;   
appDelegate.detailViewController.defaultCalendar = appDelegate.defaultCalendar; 
appDelegate.detailViewController.allowsEditing = NO;
[appDelegate.navigationController pushViewController:appDelegate.detailViewController animated:YES];

Sublcassing(再次,这不是必要的,但它可能会有用)是这样的:

<强> MPEventEditViewController.h

#import <Foundation/Foundation.h>
#import <EventKitUI/EventKitUI.h>

@interface MPEventViewController : EKEventViewController <EKEventEditViewDelegate> 

@property (nonatomic, strong) EKEventStore *eventStore;
@property (nonatomic, strong) EKCalendar *defaultCalendar;

- (void)editEvent:(id)sender;

@end

<强> MPEventEditViewController.m

#import "MPEventViewController.h"
#import "----------AppDelegate.h"

@implementation MPEventViewController

@synthesize eventStore;
@synthesize defaultCalendar; 

- (void)viewDidLoad {

    [super viewDidLoad];    
    [self setTitle: [self.event title]];
    self.allowsEditing = NO;
    self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:
                                               UIBarButtonSystemItemEdit target:self action:@selector(editEvent:)];

    //this has nothing to do with the answer :)
    //[[self.navigationController navigationBar] setTintColor: [UIColor colorWithHexString: NAVBAR_TINT_COLOR]]; 
}

- (void)editEvent:(id)sender {

    EKEventEditViewController *addController = [[EKEventEditViewController alloc] initWithNibName:nil bundle:nil];

    //this has nothing to do with the answer :)
    //[addController.navigationBar setTintColor: [UIColor colorWithHexString: NAVBAR_TINT_COLOR]]; 
    addController.eventStore = self.eventStore;
    addController.event = self.event;
    addController.navigationBar.barStyle = UIBarStyleBlack;
    addController.editViewDelegate = self;

    [self presentModalViewController:addController animated:YES];

}

- (void)eventEditViewController:(EKEventEditViewController *)controller 
          didCompleteWithAction:(EKEventEditViewAction)action {

    NSError *error = nil;
    EKEvent *thisEvent = controller.event;

    switch (action) {
        case EKEventEditViewActionCanceled:
            break;

        case EKEventEditViewActionSaved:
            [controller.eventStore saveEvent:controller.event span: EKSpanFutureEvents error:&error];
            break;

        case EKEventEditViewActionDeleted:

            [controller.eventStore removeEvent:thisEvent span: EKSpanFutureEvents error:&error];
            break;

        default:
            break;
    }

    //here would be the place to reload data if you hold it in some kind of UITableView    
    [controller dismissModalViewControllerAnimated:YES];
}


- (EKCalendar *)eventEditViewControllerDefaultCalendarForNewEvents:(EKEventEditViewController *)controller {
    EKCalendar *calendarForEdit = self.defaultCalendar;
    return calendarForEdit;
}

- (void)dealloc {

    eventStore = nil;
    defaultCalendar = nil;    
}

@end

只有在写完所有这些后我才记得有一个很棒的示例代码SimpleEKDemo。实际上,这些发布的代码中的一些可能源自那里。

修改

问题编辑完成后,上述答案变得偏离主题。

在这种情况下,您应该查看EKCalendarItemEKevent

您可以以编程方式更改所有属性(大多数属性都是从EKCalendarItem继承而来)。

也许你分心了,例如因为hasNotes只读。这是因为hasNotes函数而不是真正的属性属性,例如notesatendeesstartDateendDate等,完全可以编辑。

对于保存已修改的事件,您仍然可以使用:

 NSError error = nil;
 [self.eventStore saveEvent:event span: EKSpanFutureEvents error:&error];

删除它:

 NSError error = nil;
 [self.eventStore removeEvent:event span: EKSpanFutureEvents error:&error];

EDIT2:删除所有活动请尝试:

//assuming self.eventStore is already properly set in code

//identifierArray would be your NSMutableArray holding event identifiers
//change the name according to your code

NSError error = nil;

for (NSString *eventIdentifier in removeAllObjects) {

    EKEvent *event = [self.eventStore eventWithIdentifier:eventIdentifier];

    [self.eventStore removeEvent:event span:EKSpanFutureEvents error:&error];
}

//now you can also clear identifiers
[removeAllObjects removeAllObjects];

注意:无法保证您能够删除所有活动 - 仅限活动 默认日历,由​​设置应用中的usert设置。