Does iOS Calendar Support a Url Scheme

Is there an iPhone URL shortcut for calendar?

The calendar application is not listed as an application that can be launched using a URL in the Apple URL Scheme Reference.

The following applications are listed as supported:

  • Mail
  • Phone
  • SMS
  • Maps
  • YouTube
  • iTunes

URL Scheme for opening the iCal app at a date or event?

Probably the Answer is No. You need to look at this similar question and other similar question which is marked as accepted so hopefully is true.

Launch app from calendar event

I've resolved this issue by just extend url by event title with our app url scheme. ie. We just make it as url that is enough.

NSString *customURL = @"sampleEventappScheme://title=eventadd";

Brief explanation:

This is normal url : http://www.google.com. Here http is url scheme. As like that, in above app url, sampleEventappScheme is url scheme. When we try to hit this url, system will see scheme lookup table, if we already register our scheme, then it will switch to our app.



Related Topics



Leave a reply



Submit