我正在使用EKEvent
创建EKAlarm
,如下面的代码所示。在大多数情况下,这非常有效。
但是,在数量有限的设备上,警报未设置。事件在日历中创建,但警报丢失。
EKEvent* event = [EKEvent eventWithEventStore:eventStore];
event.title = @"Event Title";
event.allDay = YES;
event.notes = @"Event Notes";
event.calendar = calendar ? calendar : eventStore.defaultCalendarForNewEvents;
event.startDate = date;
event.endDate = date;
EKAlarm *alarm = [EKAlarm alarmWithAbsoluteDate:reminderDate];
[event addAlarm:alarm];
NSError* error = nil;
BOOL success = [eventStore saveEvent:event span:EKSpanThisEvent commit:TRUE error:&error];
此时,成功为YES,错误为零。此外,事件对象具有包含警报对象的警报数组。如果我尝试删除该警报并保存事件(应用程序崩溃,因为警报实际上不存在),这将成为一个问题。
我无法确定受影响设备的独特之处。它每次都出现在以下设备上:
以下没有问题:
以上所有设备都是不同的物理设备。所以它似乎不是任何特定的设备型号或iOS版本。
我还尝试过不同的日历,包括本地日历和同步(例如Exchange,Google)日历。在受影响的设备上,问题发生在所有日历上。
我还尝试过设置/不设置时区覆盖,以及默认提醒时间(设置>邮件,通讯录,日历)。
有没有人遇到过这个问题?
更新
我已经构建了一个测试应用程序来将问题与原始应用程序内部可能发生的任何其他问题隔离开来。它在大多数设备上都能正常运行,但问题仍然存在于受影响的设备上。
以下是[eventStore saveEvent:event span:EKSpanThisEvent commit:TRUE error:&error]
之后EKEvent对象的样子。请注意,此调用返回YES,error
为nil。
EKEvent Object: EKEvent <0x1742e1e00>
{
EKEvent <0x1742e1e00>
{ title = Event Title;
location = ;
calendar = EKCalendar <0x1740ab4c0> {title = Calendar; type = Exchange; allowsModify = YES; color = #CC73E1;};
alarms = (
"EKAlarm <0x170085190> {triggerDate = 2015-09-02 23:21:53 +0000}"
);
URL = (null);
lastModified = 2015-08-25 23:21:53 +0000;
startTimeZone = (null);
startTimeZone = (null)
};
location = ;
structuredLocation = (null);
startDate = 2015-09-04 14:00:00 +0000;
endDate = 2015-09-05 13:59:59 +0000;
allDay = 1;
floating = 1;
recurrence = (null);
attendees = (null);
travelTime = (null);
startLocation = (null);
};
然后我拨打[eventStore reset]
,看起来像这样:
EKEvent Object: EKEvent <0x1702e2600>
{
EKEvent <0x1702e2600>
{ title = Event Title;
location = ;
calendar = EKCalendar <0x1740ad200> {title = Calendar; type = Exchange; allowsModify = YES; color = #CC73E1;};
alarms = (null);
URL = (null);
lastModified = 2015-08-25 23:21:53 +0000;
startTimeZone = (null);
startTimeZone = (null)
};
location = ;
structuredLocation = (null);
startDate = 2015-09-04 14:00:00 +0000;
endDate = 2015-09-05 13:59:59 +0000;
allDay = 1;
floating = 1;
recurrence = (null);
attendees = (null);
travelTime = (null);
startLocation = (null);
};
更新#2
我已经做了一些测试,并且能够在Exchange同步日历上一致地重现该问题。我之前已经排除了这一点,因为我曾要求客户尝试选择非Exchange日历,并且他们报告问题仍然存在。
答案 0 :(得分:3)
据我所知,这似乎是一个iOS错误。我能够确定,如果我在保存EKAlarm
后添加EKEvent
然后再次保存,则会成功添加警报并显示在日历应用中的事件附近。
因此我可以通过在保存,重新加载EKEventStore
后重置EKEvent
来解决此问题,如果EKAlarm
丢失,请添加并再次保存。
if (!error) {
[eventStore reset];
event = [eventStore eventWithIdentifier:event.eventIdentifier];
if (event.alarms.count < 1) {
EKAlarm *alarm = [EKAlarm alarmWithAbsoluteDate:reminderDate];
[event addAlarm:alarm];
[eventStore saveEvent:event span:EKSpanThisEvent commit:TRUE error:&error];
}
}
答案 1 :(得分:0)
我的解决方案:
检查EKAlarm,必要时重写:
kx, ky/Fyx, kz/Fzx