How do you add a link that will add an event to your iPhone calendar from safari? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:31:54Zhttp://stackoverflow.com/feeds/question/168440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari1How do you add a link that will add an event to your iPhone calendar from safari?drye2008-10-03T19:16:21Z2009-11-23T08:19:23Z
<p>This seems like it should be simple but after a couple hours of googling I have not figured it out. I know I can add iCal links using ICS files, but this does not work on the iPhone.</p>
<p>BTW, when I say iPhone I would like it to work on the touch also. Anyone have any luck with this?</p>
http://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari/168465#1684652Answer by Stephen Darlington for How do you add a link that will add an event to your iPhone calendar from safari?Stephen Darlington2008-10-03T19:22:16Z2008-10-03T19:22:16Z<p>According to the iPhone documentation there is no URL scheme for the Calendar application. (There are URL schemes for Mail, Phone, Map, YouTube and iTunes.)</p>
<p>Of course there could be something undocumented, but I'm not sure that using it would be a good idea even if you can find it.</p>
http://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari/168471#1684710Answer by drye for How do you add a link that will add an event to your iPhone calendar from safari?drye2008-10-03T19:24:10Z2008-10-03T19:24:10Z<p><a href="http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariWebContent/UsingiPhoneApplications/chapter_6_section_1.html#//apple_ref/doc/uid/TP40006513-SW1" rel="nofollow">http://developer.apple.com/DOCUMENTATION/AppleApplications/Reference/SafariWebContent/UsingiPhoneApplications/chapter_6_section_1.html#//apple_ref/doc/uid/TP40006513-SW1</a></p>
<p>I just found this which contains Mail, Phone, Map and YouTube. Maybe this means it isn't possible.</p>
http://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari/232541#2325410Answer by Lee for How do you add a link that will add an event to your iPhone calendar from safari?Lee2008-10-24T05:18:37Z2008-10-24T05:18:37Z<p>Of course it is possible but only if your JavaScript application is installed on the device. Look at <a href="http://tetontech.wordpress.com" rel="nofollow">http://tetontech.wordpress.com</a> to see how to make calls from JavaScript to Objective-C. You can then use this and the Calendar Store Programming Guide from the documentation in Xcode to do what you want.</p>
http://stackoverflow.com/questions/168440/how-do-you-add-a-link-that-will-add-an-event-to-your-iphone-calendar-from-safari/430570#4305701Answer by Genericrich for How do you add a link that will add an event to your iPhone calendar from safari?Genericrich2009-01-10T04:49:03Z2009-01-10T04:49:03Z<p>It is not possible. Apple does not want you to do this.</p>
<p>Now, what you could do is bookmark a javascript bookmarklet that checks the user-agent of the browser invoking it, and if the user is on Safari on their laptop or desktop Mac, then invoke the iCal using standard method (ICS file).</p>
<p>The user on iPhone could bookmark your page into a home screen bookmark with a useful (and perhaps custom) icon that said "Event" and title of "Meet Mary at 8:15". They could then, when they have synced their bookmarks, be reminded of the event and invoke it on their desktop browser.</p>
<p>Significant barriers here to educating users how to use this system, but it would work if you could convince people to do it, I think.</p>