7

Is there any URL scheme that will launch the Calendar app on iOS?

I use Prowl to push Growl notifications to my phone. They just added support to launch an app with a URL based on the notification. I tried cal:// caldav:// and ical:// without any luck.

Scrollwheelie
  • 811
  • 2
  • 9
  • 16

2 Answers2

8

Try this. it works for me. Here is the link

[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"calshow://"]];
Durai Amuthan.H
  • 31,670
  • 10
  • 160
  • 241
ishare
  • 103
  • 1
  • 7
  • 7
    how to pass event's data so that when Calendar app open, it should open Add Event scree with pre filled data? – Ans May 17 '14 at 09:58
6

Update: you can now use the calshow:// URL to open the Calendar app on iOS.


See this question: Apple does not list this application on its Apple URL Scheme Reference.

Community
  • 1
  • 1
shearnonsense
  • 486
  • 3
  • 15