Skip to content Skip to sidebar Skip to footer

How Do You Add A Link That Will Add An Event To Your Iphone Calendar From Safari?

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 iPho

Solution 1:

You can get iPhone to download the .ics file (using Safari on a mobile web page) by using the webcal protocol:

webcal://website.mobi/mymeeting.ics

Solution 2:

As of iOS 5, if you create a simple http link to an .ics file, Mobile Safari will offer to open it up in Calendar.

Solution 3:

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.)

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.

Solution 4:

Of course it is possible but only if your JavaScript application is installed on the device. Look at http://tetontech.wordpress.com 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.

Solution 5:

It is not possible. Apple does not want you to do this.

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).

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.

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.

Post a Comment for "How Do You Add A Link That Will Add An Event To Your Iphone Calendar From Safari?"