关于防止日历中发生双重事件的任何想法?我有一个按钮来插入一个新事件,但如果事件已经存在,我不想要这个!
这是我试过的
for (i=0; i<arrayofCalIDs.count; i++) {
EKEvent* event2 = [eventStore eventWithIdentifier: [arrayofCalIDs objectAtIndex:i]];
if (event2 == nil) {
//here I add the event
}