My app integrates with the device calendar. When a new item is added to my app we create a calendar entry for this item. If the item is edited we need to update the calendar item.

What I do now is put a GUID in the EKEvent.Notes but obviously this is visible to the user so we add a text "do not delete". We then search the calendar for Notes containing the GUID to find the related item.

What would be ideal is if the EKEvent had a Tag property or if there was some type of hidden field that could take a string value. We could then store our related unique ID in this field and not clutter the user's notes field.

Any suggestions on how to handle this?

Thank you.

link|improve this question

79% accept rate
I'm not sure of EKEvent object as I've not really used it but I just had a little look through it and I've noticed it contains a "EventIdentifier" which is "The unique identifer for the event" - is this generated automatically? If not you could use this? – Luke Dec 15 '10 at 9:00
It is read-only unfortunately. – Neal Dec 16 '10 at 3:22
feedback

1 Answer

up vote 1 down vote accepted

What is it exactly what you want to do? The 'eventIdentifier' property is meant to uniquely identify an EKEvent instance. Using the EKEventStore you can look up an existing EKEvent using this identifier. It is no surprise this value is read-only.

I can imagine that you want to differentiate between events that were already in the calendar and events that your app created. My solution would be to keep a local registration of what events you added to the calendar. You could for example store this in a local SQLite database. You can refer to events in the iPhone calendar using the 'eventIdentifier' values.

link|improve this answer
1  
Thanks Tom. Optimally if the EKEvent had a Tag property (string) that I could put a unique value into (GUID) so I could search by this hidden field and find the events my app created rather than searching for items that may have the same data. I currently place a GUID in the Notes field but I may look at using the read only identifier and store that value in my database as you suggested as well. – Neal Dec 25 '10 at 23:43
what I am going to do is store these eventidentifier's in my CoreData data store so I have a reference for them - was looking for the same solution as you with the Tag to reduce the programming I'd have to do but it look like no dice. No I'll also have to check to see if things have been removed outside of my app in the calendar or where ever. Kind of annoying. – Slee Nov 25 '11 at 13:57
feedback

Your Answer

 
or
required, but never shown

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