I have an app that programmatically adds reminders to your iOS device's calendar.

Previous to iOS 5, I could add a calendar item with two alarms thusly:

EKEventStore* eventStore = [[EKEventStore alloc] init];
EKEvent* event = [EKEvent eventWithEventStore:eventStore];
// set startDate, endDate, title, location, etc.

[event addAlarm:[EKAlarm alarmWithRelativeOffset:60.0f * -5.0f]]; // 5 min
[event addAlarm:[EKAlarm alarmWithRelativeOffset:60.0f * -15.0f]]; // 15 min

[event setCalendar:[eventStore defaultCalendarForNewEvents]];
NSError* error = nil;
BOOL success = [eventStore saveEvent:event span:EKSpanThisEvent error:&error]; 

On iOS 5 this freezes the application. It does not return with an error - it just never returns.

If I only call addAlarm once, it works as expected.

On iOS 4.2, calling addAlarm twice works just fine.

Am I doing something wrong?

link|improve this question

75% accept rate
FYI I've submitted a bug on this to Apple; will update this post as I hear more. – Glenn Barnett Nov 9 '11 at 14:43
Any reply from them? – Mickey Cheong Dec 28 '11 at 2:06
Yes - it is fixed in 5.1b2 . I've confirmed this on a friend's device. – Glenn Barnett Jan 1 at 21:31
feedback

4 Answers

up vote 1 down vote accepted

Its a bug with Apple. If you set 2 alarms it causes the app to freeze. If you only set 1 it works just fine. This is fixed in iOS 5.1 .

link|improve this answer
feedback

If you take a look at the EventKit section in the iOS 5 changes from iOS 4.3 document, it mentions that some items are deprecated for EKEvent. The hierarchy has changed and a new abstract superclass has been added: EKCalendarItem.

link|improve this answer
What he wants to do should still work though. The alarm-related methods just got moved to EKCalendarItem. Nothing alarm-related got removed or deprecated. – Adrian Schönig Nov 2 '11 at 1:42
Exactly. I haven't tried using the new class hierarchy as a "workaround". If my bug report to Apple gets no traction, I'll give it a try and let you know what happens. – Glenn Barnett Nov 9 '11 at 14:45
feedback

have you tried calling addAlarm using a variable?

EKAlarm *alarm = [EKAlarm alarmWithRelativeOffset:60.0f * -5.0f]]; // 5 min
[event addAlarm:alarm];

EKAlarm *alarm2 = [EKAlarm alarmWithRelativeOffset:60.0f * -15.0f]]; // 15 min
[event addAlarm:alarm2];
link|improve this answer
Tried this. Doesn't work. I am having the same issue. – Tom van Zummeren Oct 25 '11 at 19:39
feedback

I had the same error.

The problem seems that startDate shoudln't be the same as endDate... really silly iOS change!

link|improve this answer
1  
I ran into that as well, but even with that fixed, I CAN add a calendar item with one alarm, but it freezes if I've added two alarms. – Glenn Barnett Nov 9 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.